Class: Pageflow::Editor::EntriesController Private

Inherits:
ApplicationController show all
Defined in:
app/controllers/pageflow/editor/entries_controller.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Instance Method Details

#indexObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



11
12
13
14
# File 'app/controllers/pageflow/editor/entries_controller.rb', line 11

def index
  @entries = DraftEntry.accessible_by(current_ability, :use_files)
  respond_with(@entries)
end

#seedObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



16
17
18
19
20
21
# File 'app/controllers/pageflow/editor/entries_controller.rb', line 16

def seed
  @entry = DraftEntry.find(params[:id])
  authorize!(:edit, @entry.to_model)

  @entry_config = Pageflow.config_for(@entry)
end

#showObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



23
24
25
26
27
28
29
30
31
32
33
# File 'app/controllers/pageflow/editor/entries_controller.rb', line 23

def show
  @entry = DraftEntry.find(params[:id])
  authorize!(:edit, @entry.to_model)

  @entry_config = Pageflow.config_for(@entry)

  respond_to do |format|
    format.html
    format.json
  end
end

#updateObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



35
36
37
38
39
40
41
42
# File 'app/controllers/pageflow/editor/entries_controller.rb', line 35

def update
  @entry = DraftEntry.find(params[:id])

  authorize!(:update, @entry.to_model)
  @entry.update_meta_data!(entry_params)

  head(:no_content)
end