Class: Guts::NavigationsController

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

Overview

Navigations ontroller

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 navigation through post



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

def create
  @navigation = Navigation.new navigation_params

  if @navigation.save
    redirect_to navigations_path, notice: "Navigation was successfully created."
  else
    render :new
  end
end

#destroyObject

Note:

Redirects to #index on success

Destroys a single navigation



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

def destroy
  @navigation.destroy
  redirect_to navigations_path, notice: "Navigation was successfully destroyed."
end

#editObject

Editing of a navigartion



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

def edit
end

#indexObject

Displays a list of navigations



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

def index
  @navigations = Navigation.all
end

#newObject

Creation of a new navigation



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

def new
  @navigation = Navigation.new
end

#showObject

Shows details about a single navigation



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

def show
end

#updateObject

Note:

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

Updates a navigation through patch



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

def update
  if @navigation.update(navigation_params)
    redirect_to navigations_path, notice: "Navigation was successfully updated."
  else
    render :edit
  end
end