From e1a12a5940b1e7328a6876eab709927f7092f74a Mon Sep 17 00:00:00 2001 From: Lucas Date: Sat, 30 Oct 2021 07:39:08 +0200 Subject: [PATCH 1/3] Add new account types --- src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt b/src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt index 975728c..be3abaf 100644 --- a/src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt +++ b/src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt @@ -7,7 +7,9 @@ enum class AccountType { DONATOR, CONTENT_TEAM, HELPER, - MODERATOR; + MODERATOR, + DEVELOPER, + ADMINISTRATOR; companion object { From e0155c5af5b6de3b62035ea831bcb0e29a5b2ce5 Mon Sep 17 00:00:00 2001 From: Lucas Date: Mon, 15 Nov 2021 23:15:51 +0100 Subject: [PATCH 2/3] More additions to roles --- src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt b/src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt index be3abaf..f97c7ac 100644 --- a/src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt +++ b/src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt @@ -5,10 +5,11 @@ enum class AccountType { NORMAL, BANNED, DONATOR, - CONTENT_TEAM, + CREATIVE_TEAM, HELPER, MODERATOR, DEVELOPER, + WEB_ADMINISTRATOR; ADMINISTRATOR; companion object { From f7754977d62203ad95963e5729c9c42e9af87376 Mon Sep 17 00:00:00 2001 From: Lucas Date: Wed, 15 Dec 2021 20:47:56 +0100 Subject: [PATCH 3/3] Small typo fix --- src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt b/src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt index f97c7ac..914cf27 100644 --- a/src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt +++ b/src/main/kotlin/com/wynntils/athena/core/enums/AccountType.kt @@ -9,7 +9,7 @@ enum class AccountType { HELPER, MODERATOR, DEVELOPER, - WEB_ADMINISTRATOR; + WEB_ADMINISTRATOR, ADMINISTRATOR; companion object {