Class: Guts::TypesController

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

Overview

Types controller

Instance Method Summary collapse

Methods included from MultisiteConcern

#current_site, #with_current_site

Methods included from SessionsHelper

#current_user, #log_in, #log_out, #logged_in?

Instance Method Details

#createObject

Note:

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

Creates a type through post



28
29
30
31
32
33
34
35
36
37
# File 'app/controllers/guts/types_controller.rb', line 28

def create
  @type = Type.new type_params

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

#destroyObject

Note:

Redirects to #index on success

Destroys a single type



52
53
54
55
56
57
# File 'app/controllers/guts/types_controller.rb', line 52

def destroy
  @type.destroy
  
  flash[:notice] = 'Type was successfully destroyed.'
  redirect_to types_path
end

#editObject

Editing of a type



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

def edit
end

#indexObject

Display a list of types



9
10
11
# File 'app/controllers/guts/types_controller.rb', line 9

def index
  @types = Type.all
end

#newObject

Creation of a type



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

def new
  @type = Type.new
end

#showObject

Show details about a single type



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

def show
end

#updateObject

Note:

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

Updates a type through patch



41
42
43
44
45
46
47
48
# File 'app/controllers/guts/types_controller.rb', line 41

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