Revert "Temporarily turn off access controls"
This reverts commit 519df326ce
.
This commit is contained in:
parent
519df326ce
commit
abe4a3c883
@ -2,7 +2,6 @@ import { Access } from 'payload/types'
|
||||
import type { User } from 'types/payload-types'
|
||||
|
||||
export const isAdmin = ({ req: { user } }: any) => {
|
||||
return true
|
||||
if (!user.roles) {
|
||||
return false
|
||||
}
|
||||
@ -15,7 +14,6 @@ export const isAdmin = ({ req: { user } }: any) => {
|
||||
}
|
||||
|
||||
export const isAdminOrCreatedBy = ({ req: { user } }: any) => {
|
||||
return true
|
||||
if (user.role) {
|
||||
return false
|
||||
}
|
||||
@ -36,7 +34,6 @@ export const isAdminOrCreatedBy = ({ req: { user } }: any) => {
|
||||
}
|
||||
|
||||
export const isAdminOrSelf = ({ req: { user } }: any) => {
|
||||
return true
|
||||
if (user) {
|
||||
if (!user.roles) {
|
||||
return false
|
||||
@ -57,7 +54,6 @@ export const isAdminOrSelf = ({ req: { user } }: any) => {
|
||||
}
|
||||
|
||||
export const isAdminOrPublished = ({ req: { user } }: any) => {
|
||||
return true
|
||||
if (user && user?.role === 'admin') {
|
||||
return true
|
||||
}
|
||||
|
@ -2,7 +2,6 @@ import { Access, FieldAccess } from 'payload/types'
|
||||
import type { User } from 'types/payload-types'
|
||||
|
||||
export const isEditor = ({ req: { user } }: any) => {
|
||||
return true
|
||||
if (!user.roles) {
|
||||
return false
|
||||
}
|
||||
|
@ -2,7 +2,6 @@ import { Access, FieldAccess } from 'payload/types'
|
||||
import type { User } from 'types/payload-types'
|
||||
|
||||
export const isUser = ({ req: { user } }: any) => {
|
||||
return true
|
||||
if (!user.roles) {
|
||||
return false
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user