mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
11 lines
209 B
C
11 lines
209 B
C
#ifndef _RIGHTS_H_
|
|
#define _RIGHTS_H_
|
|
|
|
namespace
|
|
{
|
|
const char* RIGHT_ALL = "all";
|
|
const char* RIGHT_SETTINGS="settings";
|
|
const char* RIGHT_BROWSE_BACKUPS = "browse_backups";
|
|
}
|
|
|
|
#endif //_RIGHTS_H_
|