Class: Api::AdminsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- Api::AdminsController
- Defined in:
- app/controllers/api/admins_controller.rb
Instance Method Summary (collapse)
- - (Object) create
- - (Object) destroy
- - (Object) edit
- - (Object) index
- - (Object) new
- - (Object) show
- - (Object) update
Instance Method Details
- (Object) create
20 21 22 |
# File 'app/controllers/api/admins_controller.rb', line 20 def create render json: {warning: 'not implemented'}, status: 200 end |
- (Object) destroy
28 29 30 |
# File 'app/controllers/api/admins_controller.rb', line 28 def destroy render json: {warning: 'not implemented'}, status: 200 end |
- (Object) edit
16 17 18 |
# File 'app/controllers/api/admins_controller.rb', line 16 def edit render json: {warning: 'not implemented'}, status: 200 end |
- (Object) index
4 5 6 |
# File 'app/controllers/api/admins_controller.rb', line 4 def index render json: {warning: 'not implemented'}, status: 200 end |
- (Object) new
12 13 14 |
# File 'app/controllers/api/admins_controller.rb', line 12 def new render json: {warning: 'not implemented'}, status: 200 end |
- (Object) show
8 9 10 |
# File 'app/controllers/api/admins_controller.rb', line 8 def show render json: {warning: 'not implemented'}, status: 200 end |
- (Object) update
24 25 26 |
# File 'app/controllers/api/admins_controller.rb', line 24 def update render json: {warning: 'not implemented'}, status: 200 end |