Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Actually fix inactivity for ET
  • Loading branch information
regalijan committed Nov 8, 2023
1 parent 229facb commit bc67bb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/routes/mod-queue.tsx
Expand Up @@ -55,7 +55,7 @@ export async function loader({ context }: { context: RequestContext }) {
const newItemPermissions = {
appeal_bans: [1 << 0, 1 << 11],
game_ban: [1 << 5],
inactivity: [1 << 2, 1 << 9, 1 << 10],
inactivity: [1 << 2, 1 << 3, 1 << 9, 1 << 10],
infraction: [1 << 0, 1 << 2, 1 << 6, 1 << 7],
user_lookup: [1 << 5, 1 << 8],
};
Expand All @@ -72,7 +72,7 @@ export async function loader({ context }: { context: RequestContext }) {
const typePermissions = {
appeal: [1 << 0, 1 << 1],
gma: [1 << 5],
inactivity: [1 << 3, 1 << 4, 1 << 6, 1 << 7, 1 << 11, 1 << 12],
inactivity: [1 << 4, 1 << 6, 1 << 7, 1 << 11, 1 << 12],
report: [1 << 5],
};

Expand Down

0 comments on commit bc67bb3

Please sign in to comment.