Skip to content

Commit

Permalink
README, Changelog, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
alanhill committed Jul 18, 2017
1 parent 89e5a21 commit debcd11
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .byebug_history

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
7.3.1
-----
* Add an after_authenticate job which will be run once the shop is authenticated. [[#431]](https://github.com/Shopify/shopify_app/pull/432)

7.3.0
-----
* Bump required omniauth-shopify-oauth2 version to 1.2.0.
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Table of Contents
* [Home Controller Generator](#home-controller-generator)
* [App Proxy Controller Generator](#app-proxy-controller-generator)
* [Controllers, Routes and Views](#controllers-routes-and-views)
* [After Authenticate Job and Generator](#after-authenticate-job-an-generator)
* [**Mounting the Engine**](#mounting-the-engine)
* [**Managing Api Keys**](#managing-api-keys)
* [**WebhooksManager**](#webhooksmanager)
Expand Down Expand Up @@ -323,6 +324,18 @@ end
Create your app proxy url in the [Shopify Partners' Dashboard](https://app.shopify.com/services/partners/api_clients), making sure to point it to `https://your_app_website.com/app_proxy`.
![Creating an App Proxy](/images/app-proxy-screenshot.png)

### After Authenticate Job and Generator

You can generate an after authenticate job by running `shopify_app:add_after_authenticate_job` which will add a line in `shopify_app.rb` giving the option
to run a job of your choosing either inline or asynchronously after the shop has authenticated. By default the job will run asynchronously unless `inline: false`
is specified.

```ruby
ShopifyApp.configure do |config|
config.add_after_authenticate_job = { job: Shopify::AfterAuthenticateJob, inline: true }
end
```

Troubleshooting
---------------

Expand Down
2 changes: 1 addition & 1 deletion lib/shopify_app/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ShopifyApp
VERSION = '7.3.0'
VERSION = '7.3.1'
end

0 comments on commit debcd11

Please sign in to comment.