mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 16:58:07 +08:00
fed896776f
a lot of small fixes (Closes #173) Added login field (ownCloud package)
16 lines
364 B
PHP
16 lines
364 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 FILTERS = 'FILTERS';
|
|
const ADDITIONAL_ACCOUNTS = 'ADDITIONAL_ACCOUNTS';
|
|
const ADDITIONAL_IDENTITIES = 'ADDITIONAL_IDENTITIES';
|
|
}
|