mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-11 09:18:07 +08:00
d3ee36bb97
Small refactoring and fixes
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';
|
|
}
|