Sha256: d7bf8ba7c5c488ad018f62d93f2bc0b1feaee532fc70dbae2f445cea84c76799

Contents?: true

Size: 980 Bytes

Versions: 10

Compression:

Stored size: 980 Bytes

Contents

class CommentsController < ApplicationController
  # Define your restrict methods and use them like this:
  #
  # before_action :user_required,      except: [:index, :create]
  # 
  # before_action :owner_required,     only: [:my, :incoming, :edit, :trash]
  # before_action :moderator_required, only: [:update, :to_published, :to_draft, :to_spam, :to_trash]

  layout 'admin'

  include TheComments::Controller

  # Public methods:
  #
  # [:index, :create]

  # Application side methods:
  # Overwrite following default methods if it's need
  # Following methods based on *current_user* helper method
  # Look here: https://github.com/the-teacher/the_comments/blob/master/app/controllers/concerns/the_comments_controller.rb#L62
  #
  # [:my, :incoming, :edit, :trash]

  # You must protect following methods
  # Only comments moderator (holder or admin) can invoke following actions
  #
  # [:update, :to_published, :to_draft, :to_spam, :to_trash]
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
fuck_comments-2.3.4 spec/dummy_app/app/controllers/comments_controller.rb
the_comments_ruby-2.3.4 spec/dummy_app/app/controllers/comments_controller.rb
the_comments_ruby-2.3.3 spec/dummy_app/app/controllers/comments_controller.rb
the_comments-2.3.1 spec/dummy_app/app/controllers/comments_controller.rb
the_comments-2.2.2 spec/dummy_app/app/controllers/comments_controller.rb
the_comments-2.2.1 spec/dummy_app/app/controllers/comments_controller.rb
the_comments-2.2.0 spec/dummy_app/app/controllers/comments_controller.rb
the_comments-2.1.0 spec/dummy_app/app/controllers/comments_controller.rb
the_comments-2.0.1 spec/dummy_app/app/controllers/comments_controller.rb
the_comments-2.0.0 spec/dummy_app/app/controllers/comments_controller.rb