diff --git a/frontend/lang/messages/en-US.json b/frontend/lang/messages/en-US.json index 08b98b58c..28fcbede1 100644 --- a/frontend/lang/messages/en-US.json +++ b/frontend/lang/messages/en-US.json @@ -1051,7 +1051,8 @@ "dont-want-to-see-this-anymore-be-sure-to-change-your-email": "Don't want to see this anymore? Be sure to change your email in your user settings!", "forgot-password": "Forgot Password", "forgot-password-text": "Please enter your email address and we will send you a link to reset your password.", - "changes-reflected-immediately": "Changes to this user will be reflected immediately." + "changes-reflected-immediately": "Changes to this user will be reflected immediately.", + "default-activity": "Default Activity" }, "language-dialog": { "translated": "translated", diff --git a/frontend/lib/api/types/user.ts b/frontend/lib/api/types/user.ts index 029e166b6..542421c94 100644 --- a/frontend/lib/api/types/user.ts +++ b/frontend/lib/api/types/user.ts @@ -194,6 +194,7 @@ export interface UserBase { group?: string | null; household?: string | null; advanced?: boolean; + defaultActivity?: string; canInvite?: boolean; canManage?: boolean; canManageHousehold?: boolean; @@ -209,6 +210,7 @@ export interface UserIn { group?: string | null; household?: string | null; advanced?: boolean; + defaultActivity?: string; canInvite?: boolean; canManage?: boolean; canManageHousehold?: boolean; @@ -225,6 +227,7 @@ export interface UserOut { group: string; household: string; advanced?: boolean; + defaultActivity?: string; canInvite?: boolean; canManage?: boolean; canManageHousehold?: boolean; diff --git a/frontend/pages/login.vue b/frontend/pages/login.vue index 4fe5ac94c..1b9321e7f 100644 --- a/frontend/pages/login.vue +++ b/frontend/pages/login.vue @@ -1,18 +1,8 @@