> For the complete documentation index, see [llms.txt](https://doc.var-fivem.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.var-fivem.com/bank/configuration/society.md).

# Society

This code is used to authorize or not x access to X company and for the grades which are authorized to have access to the companies tab

```lua
Shared.Societies = {
  'ambulance',
  'burgershot',
  'cardealer',
  'mechanic',
  'police',
  'unemployed',
  'unicorn',
  'weazelnews'
}

Shared.AllowedGradeSocieties = {
  'boss',
  'chief'
}

Shared.Email = "@lifeinvader.ls"
```

Shared.Email is the value which is after the company label for example for lspd the email will be <LSPD@lifeinvader.ls>
