Make first user admin of the website

This commit is contained in:
NicolasDorier
2017-09-15 19:08:31 +09:00
parent 42f6985e8d
commit e7540fe58b
3 changed files with 31 additions and 3 deletions

12
BTCPayServer/Roles.cs Normal file
View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer
{
public class Roles
{
public const string ServerAdmin = "ServerAdmin";
}
}