Add email verification

Standardize button styles
This commit is contained in:
Kieran
2022-03-02 11:37:15 +00:00
parent c2c6b92ce6
commit 72823ffedd
25 changed files with 480 additions and 92 deletions

View File

@@ -43,4 +43,10 @@ public class InMemoryCache : ICache
_cache.Set(key, list.ToArray());
return ValueTask.CompletedTask;
}
public ValueTask Delete(string key)
{
_cache.Remove(key);
return ValueTask.CompletedTask;;
}
}