Cross Reference: base.rb
xref
: /
ontohub
/
app
/
controllers
/
api
/
v1
/
base.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
base.rb revision ee5342a8882c2fc7631fcffb5497e6597747887c
# Base controller for all API controllers
class
Api
::
V1
::
Base
<
ApplicationController
before_filter
:
authenticate_user
!
respond_to
:
json
helper_method
:
inherited_collection
protected
# collection is overwritten by RABL
def
inherited_collection
collection
end
def
check_write_permission
authorize
! :
write
,
resource
end
end