Class: Pulitzer::SequenceFlowStylesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/pulitzer/sequence_flow_styles_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



10
11
12
13
14
15
16
17
18
# File 'app/controllers/pulitzer/sequence_flow_styles_controller.rb', line 10

def create
  @sequence_flow_style = Pulitzer::SequenceFlowStyle.create(sequence_flow_style_params)
  if @sequence_flow_style.errors.empty?
    render partial: 'show_wrapper', locals: {sequence_flow_style: @sequence_flow_style}
  else
    @post_type = @sequence_flow_style.post_type
    render partial: 'new', locals: {sequence_flow_style: @sequence_flow_style}
  end
end

#destroyObject



37
38
39
40
# File 'app/controllers/pulitzer/sequence_flow_styles_controller.rb', line 37

def destroy
  @sequence_flow_style.destroy
  head :ok
end

#editObject



24
25
26
# File 'app/controllers/pulitzer/sequence_flow_styles_controller.rb', line 24

def edit
  render partial: 'form', locals: {sequence_flow_style: @sequence_flow_style}
end

#newObject



4
5
6
7
8
# File 'app/controllers/pulitzer/sequence_flow_styles_controller.rb', line 4

def new
  @sequence_flow_style = Pulitzer::SequenceFlowStyle.new(sequence_flow_style_params)
  @post_type = @sequence_flow_style.post_type
  render partial: 'new', locals: {sequence_flow_style: @sequence_flow_style}
end

#showObject



20
21
22
# File 'app/controllers/pulitzer/sequence_flow_styles_controller.rb', line 20

def show
  render partial: 'show', locals: {sequence_flow_style: @sequence_flow_style}
end

#updateObject



28
29
30
31
32
33
34
35
# File 'app/controllers/pulitzer/sequence_flow_styles_controller.rb', line 28

def update
  @sequence_flow_style.update_attributes(sequence_flow_style_params)
  if @sequence_flow_style.errors.empty?
    render partial: 'show', locals: {sequence_flow_style: @sequence_flow_style}
  else
    render partial: 'form', locals: {sequence_flow_style: @sequence_flow_style}, status: 409
  end
end