Class: Pulitzer::PostTypesController

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

Defined Under Namespace

Classes: CreateSingletonPost, CreateTemplateVersion

Instance Method Summary collapse

Instance Method Details

#createObject



25
26
27
28
29
# File 'app/controllers/pulitzer/post_types_controller.rb', line 25

def create
  @post_type = Pulitzer::PostType.create(post_type_params)
  CreateTemplateVersion.new(@post_type).call
  render partial: 'show_wrapper', locals: {post_type: @post_type}
end

#destroyObject



45
46
47
48
# File 'app/controllers/pulitzer/post_types_controller.rb', line 45

def destroy
  @post_type.destroy
  head :ok
end

#editObject



35
36
37
# File 'app/controllers/pulitzer/post_types_controller.rb', line 35

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

#indexObject



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'app/controllers/pulitzer/post_types_controller.rb', line 4

def index
  if params[:post_type_kind]
    @post_type_kind = params[:post_type_kind]
  else
    @post_type_kind = 'template'
  end
  if request.xhr?
    if Pulitzer. || self.instance_eval(&Pulitzer.)
      @post_types = Pulitzer::PostType.send(@post_type_kind).order(name: :asc)
    else
      @post_types = Pulitzer::PostType.send(@post_type_kind).joins(:post_type_versions).where(pulitzer_post_type_versions: {status: 'published'}).distinct.order(name: :asc)
    end
    render_ajax
  end
end

#newObject



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

def new
  @post_type = Pulitzer::PostType.new(post_type_params)
  render partial: 'new', locals: {post_type: @post_type}
end

#showObject



31
32
33
# File 'app/controllers/pulitzer/post_types_controller.rb', line 31

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

#updateObject



39
40
41
42
43
# File 'app/controllers/pulitzer/post_types_controller.rb', line 39

def update
  @post_type.update_attributes(post_type_params)
  Pulitzer::UpdateSingletonPost.new(@post_type, post_params_name).call
  render partial: 'show', locals: {post_type: @post_type}
end