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 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
# File 'app/controllers/guts/types_controller.rb', line 28

def create
  @type = Type.new type_params

  if @type.save
    redirect_to types_path, notice: "Type was successfully created."
  else
    render :new
  end
end

#destroyObject

Note:

Redirects to #index on success

Destroys a single type



50
51
52
53
# File 'app/controllers/guts/types_controller.rb', line 50

def destroy
  @type.destroy
  redirect_to types_path, notice: "Type was successfully destroyed."
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



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

def update
  if @type.update type_params
    redirect_to types_path, notice: "Type was successfully updated."
  else
    render :edit
  end
end