mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-31 14:48:45 +00:00
Fixup website content deletion permissions
This commit is contained in:
parent
f4cad21061
commit
1b69f6a0e0
2 changed files with 4 additions and 6 deletions
|
@ -122,7 +122,7 @@
|
|||
@foreach (Photo photo in Model.Photos)
|
||||
{
|
||||
string width = isMobile ? "sixteen" : "eight";
|
||||
bool canDelete = Model.User != null && (Model.User.IsModerator || Model.User.UserId == photo.CreatorId || Model.User.UserId == Model.Slot?.SlotId);
|
||||
bool canDelete = Model.User != null && (Model.User.IsModerator || Model.User.UserId == photo.CreatorId);
|
||||
<div class="@width wide column">
|
||||
@await photo.ToHtml(Html, ViewData, language, timeZone, canDelete)
|
||||
</div>
|
||||
|
@ -147,7 +147,7 @@
|
|||
"isMobile", isMobile
|
||||
},
|
||||
{
|
||||
"CanDelete", (Model.User?.IsModerator ?? false) || Model.Slot?.CreatorId == Model.User?.UserId
|
||||
"CanDelete", Model.User?.IsModerator ?? false
|
||||
},
|
||||
})
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue