You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
throwcreateError({statusCode: 403,statusMessage: 'Admin access required',data: {why: 'Admin chat mode requires the admin role',fix: 'Contact an administrator to be granted access'}})
23
24
}
24
25
26
+
if(user.role!=='admin'){
27
+
constrateLimit=awaitcheckRateLimit(user.id)
28
+
if(!rateLimit.allowed){
29
+
throwcreateError({statusCode: 429,statusMessage: 'Rate limit exceeded',data: {why: `You have reached the daily limit of ${rateLimit.limit} messages`,fix: 'Wait until tomorrow or contact an administrator'}})
throwcreateError({statusCode: 403,statusMessage: 'Admin access required',data: {why: 'This chat is in admin mode and requires the admin role',fix: 'Contact an administrator to be granted access'}})
throwcreateError({statusCode: 429,statusMessage: 'Rate limit exceeded',data: {why: `You have reached the daily limit of ${rateLimitInfo.limit} messages`,fix: 'Wait until tomorrow or contact an administrator'}})
0 commit comments