Permissions

This document outlines the permission configurations for various departments in the system. Each department has access to specific pages, with view and edit permissions defined.

shared/config_permissions.lua

πŸ“˜ Configuration Structure

Each department is configured under Config.Permissions, with the following structure:

Config.Permissions = {
  ['department_name'] = {
    management_rank = number,
    backgroundImage = "url",
    Pages = {
      ['page_name'] = { view = boolean, edit = boolean },
      ...
    }
  }
}

πŸ”§ Creating New Departments

You can easily add new departments and assign MDT (Mobile Data Terminal) permissions by following this structure:

  ['department_name'] = {
    management_rank = number,
    backgroundImage = "url",
    Pages = {
      ['page_name'] = { view = boolean, edit = boolean },
      ...
    }
  }

🟦 sasp - San Andreas State Police

  • Management Rank: 3

Page
View
Edit

dashboard

βœ…

βœ…

citizens

βœ…

βœ…

reports

βœ…

βœ…

roaster

βœ…

❌

incidents

βœ…

βœ…

vehicles

βœ…

βœ…

criminalcode

βœ…

βœ…

warrant

βœ…

βœ…

officermanagement

βœ…

βœ…

securitycamera

βœ…

βœ…

dispatch

βœ…

βœ…

weapons

βœ…

βœ…

ftoreports

βœ…

βœ…


🟫 bcso - Blaine County Sheriff's Office

  • Management Rank: 3

Permissions are identical to sasp.


πŸš“ police

  • Management Rank: 3

Page
View
Edit

dashboard

βœ…

βœ…

citizens

βœ…

βœ…

reports

βœ…

βœ…

roaster

βœ…

❌

incidents

βœ…

βœ…

vehicles

βœ…

βœ…

criminalcode

βœ…

βœ…

warrant

βœ…

βœ…

officermanagement

βœ…

βœ…

securitycamera

βœ…

βœ…

bodycam

βœ…

❌

dispatch

βœ…

βœ…

weapons

βœ…

βœ…

ftoreports

βœ…

βœ…


πŸš‘ ambulance

  • Management Rank: 2

Page
View
Edit

dashboardems

βœ…

βœ…

citizensems

βœ…

❌

reports

❌

❌

emsreports

βœ…

βœ…

roaster

βœ…

❌

emsincidents

βœ…

βœ…

medicmanagement

βœ…

βœ…

dispatch

βœ…

βœ…

emsftoreports

βœ…

βœ…


βš–οΈ lawyer

  • Management Rank: 0

Page
View
Edit

citizens

βœ…

❌

reports

βœ…

❌

vehicles

βœ…

❌

criminalcode

βœ…

βœ…

warrant

βœ…

❌


Last updated