Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
257
Merge Requests
27
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Commits
00eef517
Commit
00eef517
authored
2 minutes ago
by
Mark Harding
Browse files
Options
Download
(fix): do not show appeal review if not loggedin
parent
a8f2ccf4
master
No related merge requests found
Pipeline
#107263760
running with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
Controllers/api/v2/moderation/appeals.php
View file @
00eef517
...
...
@@ -16,6 +16,13 @@ class appeals implements Interfaces\Api
{
public
function
get
(
$pages
)
{
if
(
!
Core\Session
::
isLoggedIn
())
{
return
Factory
::
response
([
'status'
=>
'error'
,
'message'
=>
'You must be loggedin'
,
]);
}
if
(
$_POST
[
'offset'
])
{
return
Factory
::
response
([
]);
}
...
...
This diff is collapsed.
Please
register
or
sign in
to comment