Я пытаюсь создать блог на сайте.Я использую active_admin
и cancancan
драгоценный камень.Два контроллера, которые я сделал, это Post
, Category
.
posts_controller.rb
class PostsController < InheritedResources::Base
load_and_authorize_resource
private
def post_params
params.require(:post).permit(:title, :body, :user_id, :published_at)
end
end
ateg_controller.rb
class CategoriesController < InheritedResources::Base
load_and_authorize_resource
private
def category_params
params.require(:category).permit(:category)
end
end
user.rb
class User < ApplicationRecord
has_many :posts
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
devise :database_authenticatable,
:recoverable, :rememberable, :validatable
def admin?
role == "admin"
end
def regular?
role == "regular"
end
def guest?
role == "guest"
end
end
способность.рб
class Ability
include CanCan::Ability
def initialize(user)
# Define abilities for the passed in user here. For example:
#
#user = User.new()
if user.admin?
can :manage, :all
else
can :read, :all
end
end
end
schema.rb
ActiveRecord::Schema.define(version: 2019_02_18_221247) do
create_table "active_admin_comments", force: :cascade do |t|
t.string "namespace"
t.text "body"
t.string "resource_type"
t.integer "resource_id"
t.string "author_type"
t.integer "author_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["author_type", "author_id"], name: "index_active_admin_comments_on_author_type_and_author_id"
t.index ["namespace"], name: "index_active_admin_comments_on_namespace"
t.index ["resource_type", "resource_id"], name: "index_active_admin_comments_on_resource_type_and_resource_id"
end
create_table "categories", force: :cascade do |t|
t.string "category"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "posts", force: :cascade do |t|
t.string "title"
t.text "body"
t.integer "user_id"
t.date "published_at"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "category_id"
end
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "role", default: "guest"
t.index ["email"], name: "index_users_on_email", unique: true
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end
end
Я пытаюсьопределить авторизацию на основе role
, в таблице пользователей есть столбец роли, и по умолчанию новый пользователь является гостевым пользователем.
Моя цель - разрешить гостевому пользователю читать только сообщения.
Проблема : я получаю отказ в доступе как для администратора, так и для гостя, хотя я четко определил, что могут делать разные типы пользователей в способность. Rb .
Если вынужна дополнительная информация о коде, который вы можете проверить на github .