mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-10-01 17:34:37 +08:00
15 lines
351 B
PHP
15 lines
351 B
PHP
<?php
|
|
|
|
namespace RainLoop\Enumerations;
|
|
|
|
class Capa
|
|
{
|
|
const PREM = 'PREM';
|
|
const TWO_FACTOR = 'TWO_FACTOR';
|
|
const OPEN_PGP = 'OPEN_PGP';
|
|
const PREFETCH = 'PREFETCH';
|
|
const GRAVATAR = 'GRAVATAR';
|
|
const THEMES = 'THEMES';
|
|
const ADDITIONAL_ACCOUNTS = 'ADDITIONAL_ACCOUNTS';
|
|
const ADDITIONAL_IDENTITIES = 'ADDITIONAL_IDENTITIES';
|
|
}
|