2013-06-25 08:01:03 +01:00
|
|
|
class Platforms::TokensController < Platforms::BaseController
|
2013-06-25 08:00:20 +01:00
|
|
|
before_filter :authenticate_user!
|
|
|
|
|
|
|
|
# load_and_authorize_resource :platform
|
|
|
|
# load_and_authorize_resource #:token#, :through => :subject
|
|
|
|
# load_and_authorize_resource :token, :through => :subject
|
|
|
|
|
|
|
|
load_resource :platform
|
|
|
|
load_and_authorize_resource :through => :platform, :shallow => true
|
|
|
|
|
|
|
|
def index
|
|
|
|
@tokens = @platform.tokens.includes(:creator, :updater)
|
|
|
|
.paginate(:per_page => 20, :page => params[:page])
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
|
|
|
def withdraw
|
2013-06-25 09:10:45 +01:00
|
|
|
if @token.block
|
|
|
|
@token.updater = current_user
|
|
|
|
@token.save
|
2013-06-25 14:56:39 +01:00
|
|
|
redirect_to :back, :notice => t('flash.tokens.withdraw_success')
|
2013-06-25 08:00:20 +01:00
|
|
|
else
|
2013-06-25 14:56:39 +01:00
|
|
|
redirect_to :back, :notice => t('flash.tokens.withdraw_fail')
|
2013-06-25 08:00:20 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@token = @platform.tokens.build params[:token]
|
|
|
|
@token.creator = current_user
|
|
|
|
if @token.save
|
|
|
|
flash[:notice] = t('flash.tokens.saved')
|
|
|
|
redirect_to platform_tokens_path(@platform)
|
|
|
|
else
|
|
|
|
flash[:error] = t('flash.tokens.save_error')
|
|
|
|
flash[:warning] = @token.errors.full_messages.join('. ') unless @token.errors.blank?
|
|
|
|
render :new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|