mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
fix permissions
This commit is contained in:
parent
6bd3e41cd0
commit
edc2b0c5d3
1 changed files with 6 additions and 10 deletions
|
@ -73,9 +73,8 @@ defimpl Canada.Can, for: [Atom, Philomena.Users.User] do
|
||||||
# Manage user links
|
# Manage user links
|
||||||
def can?(%User{role: "moderator"}, :create_links, %User{}), do: true
|
def can?(%User{role: "moderator"}, :create_links, %User{}), do: true
|
||||||
def can?(%User{role: "moderator"}, :edit_links, %User{}), do: true
|
def can?(%User{role: "moderator"}, :edit_links, %User{}), do: true
|
||||||
def can?(%User{role: "moderator"}, :edit, %UserLink{}), do: true
|
def can?(%User{role: "moderator"}, _action, UserLink), do: true
|
||||||
def can?(%User{role: "moderator"}, :index, UserLink), do: true
|
def can?(%User{role: "moderator"}, _action, %UserLink{}), do: true
|
||||||
def can?(%User{role: "moderator"}, :show, %UserLink{}), do: true
|
|
||||||
|
|
||||||
# Reveal anon users
|
# Reveal anon users
|
||||||
def can?(%User{role: "moderator"}, :reveal_anon, _object), do: true
|
def can?(%User{role: "moderator"}, :reveal_anon, _object), do: true
|
||||||
|
@ -87,11 +86,8 @@ defimpl Canada.Can, for: [Atom, Philomena.Users.User] do
|
||||||
def can?(%User{role: "moderator"}, :hide, %Comment{}), do: true
|
def can?(%User{role: "moderator"}, :hide, %Comment{}), do: true
|
||||||
|
|
||||||
# Show the DNP list
|
# Show the DNP list
|
||||||
def can?(%User{role: "moderator"}, :index, DnpEntry), do: true
|
def can?(%User{role: "moderator"}, _action, DnpEntry), do: true
|
||||||
def can?(%User{role: "moderator"}, :edit, %DnpEntry{}), do: true
|
def can?(%User{role: "moderator"}, _action, %DnpEntry{}), do: true
|
||||||
def can?(%User{role: "moderator"}, :update, %DnpEntry{}), do: true
|
|
||||||
def can?(%User{role: "moderator"}, :show_reason, %DnpEntry{}), do: true
|
|
||||||
def can?(%User{role: "moderator"}, :show_feedback, %DnpEntry{}), do: true
|
|
||||||
|
|
||||||
# Create bans
|
# Create bans
|
||||||
def can?(%User{role: "moderator"}, _action, UserBan), do: true
|
def can?(%User{role: "moderator"}, _action, UserBan), do: true
|
||||||
|
@ -230,7 +226,7 @@ defimpl Canada.Can, for: [Atom, Philomena.Users.User] do
|
||||||
def can?(_user, :create_comment, %Image{hidden_from_users: false, commenting_allowed: true}), do: true
|
def can?(_user, :create_comment, %Image{hidden_from_users: false, commenting_allowed: true}), do: true
|
||||||
|
|
||||||
# Edit comments on images
|
# Edit comments on images
|
||||||
def can?(%User{id: id}, :edit, %Comment{hidden_from_users: false, user_id: id} = comment) do
|
def can?(%User{id: id}, action, %Comment{hidden_from_users: false, user_id: id} = comment) when action in [:edit, :update] do
|
||||||
# comment must have been made no later than 15 minutes ago
|
# comment must have been made no later than 15 minutes ago
|
||||||
time_ago = NaiveDateTime.utc_now() |> NaiveDateTime.add(-15 * 60)
|
time_ago = NaiveDateTime.utc_now() |> NaiveDateTime.add(-15 * 60)
|
||||||
|
|
||||||
|
@ -255,7 +251,7 @@ defimpl Canada.Can, for: [Atom, Philomena.Users.User] do
|
||||||
|
|
||||||
# Create and edit posts
|
# Create and edit posts
|
||||||
def can?(_user, :create_post, %Topic{locked_at: nil, hidden_from_users: false}), do: true
|
def can?(_user, :create_post, %Topic{locked_at: nil, hidden_from_users: false}), do: true
|
||||||
def can?(%User{id: id}, :edit, %Post{hidden_from_users: false, user_id: id}), do: true
|
def can?(%User{id: id}, action, %Post{hidden_from_users: false, user_id: id}) when action in [:edit, :update], do: true
|
||||||
|
|
||||||
# View profile pages
|
# View profile pages
|
||||||
def can?(_user, :show, %User{}), do: true
|
def can?(_user, :show, %User{}), do: true
|
||||||
|
|
Loading…
Reference in a new issue