Class: Resourcey::Controller

Inherits:
ActionController::Base
  • Object
show all
Includes:
ControllerModel, ControllerPagination
Defined in:
lib/resourcey/controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject

[View source]

18
19
20
21
22
23
24
25
26
# File 'lib/resourcey/controller.rb', line 18

def create
  @resource = resource_model.new(resource_params)

  if @resource.save
    render json: @resource, serializer: serializer, status: :ok
  else
    render json: { errors: @resource.errors }, status: :bad_request
  end
end

#destroyObject

[View source]

39
40
41
42
43
44
45
46
47
48
# File 'lib/resourcey/controller.rb', line 39

def destroy
  find_resource
  @resource.destroy

  if @resource.destroyed?
    render json: true, status: :ok
  else
    render json: { errors: @resource.errors }, status: :bad_request
  end
end

#indexObject

[View source]

9
10
11
# File 'lib/resourcey/controller.rb', line 9

def index
  render json: serialized_collection(paginated_resources)
end

#showObject

[View source]

13
14
15
16
# File 'lib/resourcey/controller.rb', line 13

def show
  find_resource
  render json: @resource, serializer: serializer
end

#updateObject

[View source]

28
29
30
31
32
33
34
35
36
37
# File 'lib/resourcey/controller.rb', line 28

def update
  find_resource
  @resource.assign_attributes(resource_params)

  if @resource.save
    render json: @resource, serializer: serializer, status: :ok
  else
    render json: { errors: @resource.errors }, status: :bad_request
  end
end