From 6a8b9d36a7d64a9cd363ab44e0dd8fb666f11c1c Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Mon, 4 Sep 2023 19:03:45 -0600 Subject: [PATCH] move limit checks out of "advanced" section, and always allow registration (for tests) --- src/views/AccountViewView.vue | 57 +++++++++++++++++------------------ src/views/ContactsView.vue | 23 ++++++++------ 2 files changed, 40 insertions(+), 40 deletions(-) diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue index f46b846..c17be54 100644 --- a/src/views/AccountViewView.vue +++ b/src/views/AccountViewView.vue @@ -170,6 +170,33 @@ +
+ + +
+ Checking... +
+
+ {{ limitsMessage }} +
+
+ Rate Limits +

+ You have done {{ limits.doneClaimsThisWeek }} claims out of + {{ limits.maxClaimsPerWeek }} for this week. Your claims counter + resets at {{ readableTime(limits.nextWeekBeginDateTime) }} +

+

+ You have done {{ limits.doneRegistrationsThisMonth }} registrations + out of {{ limits.maxRegistrationsPerMonth }} for this month. Your + registrations counter resets at + {{ readableTime(limits.nextMonthBeginDateTime) }} +

+
+
+

Show amounts given with contacts -
- - -
- Checking... -
-
- {{ limitsMessage }} -
-
- Rate Limits -

- You have done {{ limits.doneClaimsThisWeek }} claims out of - {{ limits.maxClaimsPerWeek }} for this week. Your claims counter - resets at {{ readableTime(limits.nextWeekBeginDateTime) }} -

-

- You have done {{ limits.doneRegistrationsThisMonth }} registrations - out of {{ limits.maxRegistrationsPerMonth }} for this month. Your - registrations counter resets at - {{ readableTime(limits.nextMonthBeginDateTime) }} -

-
-
-
-