Class: Guts::ContentsController

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

Overview

Contents controller

Instance Method Summary collapse

Instance Method Details

#createObject

Note:

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

Creates a content through post



36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'app/controllers/guts/contents_controller.rb', line 36

def create
  @content      = Content.new content_params
  @content.user = current_user
  @content.type = @type

  authorize @content

  if @content.save
    flash[:notice] = "#{@content.type.title} was successfully created."
    redirect_to edit_content_path(@content)
  else
    render :new
  end
end

#destroyObject

Note:

Redirects to #index on success

Destroys a content



66
67
68
69
70
71
72
# File 'app/controllers/guts/contents_controller.rb', line 66

def destroy
  authorize @content
  @content.destroy

  flash[:notice] = "#{@content.type.title} was successfully destroyed."
  redirect_to contents_path(type: @content.type.slug)
end

#editObject

Editting of a content



30
31
32
# File 'app/controllers/guts/contents_controller.rb', line 30

def edit
  authorize @content
end

#indexObject

Note:

This method must have a type set

Displays a list of contents



12
13
14
15
16
# File 'app/controllers/guts/contents_controller.rb', line 12

def index
  @contents = policy_scope(Content)
              .where(type: @type)
              .paginate(page: params[:page], per_page: @per_page)
end

#newObject

Creation of a content



19
20
21
22
# File 'app/controllers/guts/contents_controller.rb', line 19

def new
  @content = Content.new
  authorize @content
end

#showObject

Shows details about a single content



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

def show
  authorize @content
end

#updateObject

Note:

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

Updates a content through patch



53
54
55
56
57
58
59
60
61
62
# File 'app/controllers/guts/contents_controller.rb', line 53

def update
  authorize @content

  if @content.update(content_params)
    flash[:notice] = "#{@content.type.title} was successfully updated."
    redirect_to edit_content_path(@content)
  else
    render :edit
  end
end