Class: Bongo::DraftsController

Inherits:
ArticlesController show all
Defined in:
app/controllers/bongo/drafts_controller.rb

Instance Method Summary collapse

Methods inherited from ArticlesController

#create, #destroy, #edit, #new, #show, #update

Instance Method Details

#indexObject



3
4
5
# File 'app/controllers/bongo/drafts_controller.rb', line 3

def index
  @drafts = policy_scope(Article).not.published.order(updated_at: :desc)
end