Sha256: b73d225fcbd99bf33557becbb0467583b6a19261b0f8c010164be383fd848e00
Contents?: true
Size: 387 Bytes
Versions: 73
Compression:
Stored size: 387 Bytes
Contents
require_dependency "ishapi/application_controller" module Ishapi class UsersController < ApplicationController before_action :set_profile, :only => [ :fb_sign_in, :show ] def fb_sign_in authorize! :fb_sign_in, Ishapi # render :json => { :status => :ok } render :action => 'show' end def show authorize! :fb_sign_in, Ishapi end end end
Version data entries
73 entries across 73 versions & 1 rubygems