Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bypass application layout rendering for SessionsController #333

Merged
merged 4 commits into from Aug 24, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
7.2.0
-----
* Disable application layout rendering for the `/login` page

7.1.1
-----
* Lower required Ruby version to 2.2.2 to better match up with Rails 5.0
Expand Down
1 change: 1 addition & 0 deletions lib/shopify_app/sessions_concern.rb
Expand Up @@ -4,6 +4,7 @@ module SessionsConcern

included do
include ShopifyApp::LoginProtection
layout false, only: :new
end

def new
Expand Down
2 changes: 1 addition & 1 deletion lib/shopify_app/version.rb
@@ -1,3 +1,3 @@
module ShopifyApp
VERSION = '7.1.1'
VERSION = '7.2.0'
end