Class: Guts::TypesController

Inherits:
ApplicationController show all
Includes:
ControllerPermissionConcern
Defined in:
app/controllers/guts/types_controller.rb

Overview

Types controller

Instance Method Summary collapse

Methods inherited from ApplicationController

#current_ability

Methods included from MultisiteConcern

#current_site, #with_current_site

Instance Method Details

#createObject

Note:

Redirects to #index if successfull or re-renders #new if not

Creates a type through post



31
32
33
34
35
36
37
38
39
40
# File 'app/controllers/guts/types_controller.rb', line 31

def create
  @type = Type.new type_params

  if @type.save
    flash[:notice] = 'Type was successfully created.'
    redirect_to edit_type_path(@type)
  else
    render :new
  end
end

#destroyObject

Note:

Redirects to #index on success

Destroys a single type



55
56
57
58
59
60
# File 'app/controllers/guts/types_controller.rb', line 55

def destroy
  @type.destroy

  flash[:notice] = 'Type was successfully destroyed.'
  redirect_to types_path
end

#editObject

Editing of a type



26
27
# File 'app/controllers/guts/types_controller.rb', line 26

def edit
end

#indexObject

Display a list of types



12
13
14
# File 'app/controllers/guts/types_controller.rb', line 12

def index
  @types = Type.all
end

#newObject

Creation of a type



21
22
23
# File 'app/controllers/guts/types_controller.rb', line 21

def new
  @type = Type.new
end

#showObject

Show details about a single type



17
18
# File 'app/controllers/guts/types_controller.rb', line 17

def show
end

#updateObject

Note:

Redirects to #index if successfull or re-renders #edit if not

Updates a type through patch



44
45
46
47
48
49
50
51
# File 'app/controllers/guts/types_controller.rb', line 44

def update
  if @type.update type_params
    flash[:notice] = 'Type was successfully updated.'
    redirect_to edit_type_path(@type)
  else
    render :edit
  end
end