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



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

def create
  @navigation = Navigation.new navigation_params

  if @navigation.save
    flash[:notice] = 'Navigation was successfully created.'
    redirect_to navigations_path
  else
    render :new
  end
end

#destroyObject

Note:

Redirects to #index on success

Destroys a single navigation



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

def destroy
  @navigation.destroy
  
  flash[:notice] = 'Navigation was successfully destroyed.'
  redirect_to navigations_path
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



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

def update
  if @navigation.update(navigation_params)
    flash[:notice] = 'Navigation was successfully updated.'
    redirect_to navigations_path
  else
    render :edit
  end
end