You've already forked AstralRinth
forked from didirus/AstralRinth
10 lines
213 B
JavaScript
10 lines
213 B
JavaScript
export const getUserLink = (user) => {
|
|
return `/user/${user.username}`
|
|
}
|
|
|
|
export const isStaff = (user) => {
|
|
return user && STAFF_ROLES.includes(user.role)
|
|
}
|
|
|
|
export const STAFF_ROLES = ['moderator', 'admin']
|