You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
262 B
13 lines
262 B
5 years ago
|
module OperateProjectAbilityAble
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
end
|
||
|
|
||
|
def authorizate_user_can_edit_project!
|
||
|
return if current_user.project_manager? @project || current_user.admin?
|
||
|
render_forbidden('你没有权限操作.')
|
||
|
end
|
||
|
|
||
|
end
|