Sha256: 32ece4a2fb7f26ffe56dbdfc191729a9c26fd323bf2688b6fad125cfab3b0223
Contents?: true
Size: 279 Bytes
Versions: 3
Compression:
Stored size: 279 Bytes
Contents
class FullProtectedResourcesController < ApplicationController before_action -> { doorkeeper_authorize! :write, :admin }, only: :show before_action :doorkeeper_authorize!, only: :index def index render text: 'index' end def show render text: 'show' end end
Version data entries
3 entries across 3 versions & 1 rubygems