user upgrades: make upgrade page visible to logged out users.

This commit is contained in:
evazion
2019-09-09 17:24:55 -05:00
parent 93256c3ab2
commit 62b89e1f9a
2 changed files with 4 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
class UserUpgradesController < ApplicationController
before_action :member_only, :only => [:new, :show]
before_action :member_only, only: [:show]
helper_method :user
skip_before_action :verify_authenticity_token, only: [:create]