Circles, pub & auth

* Adds a boolean to each Circle, saying that
  it is public, and its existence may be known by any interested in
* Adds claims of type "YavscClaimTypes.CircleMembership" at
  login, in order to implement some faster authorisation processes and file restricted accesses.
This commit is contained in:
Paul Schneider 2019-07-30 18:42:22 +02:00
commit cdc18fd547
12 changed files with 3158 additions and 92 deletions

View file

@ -4,6 +4,8 @@
namespace Yavsc {
public static class YavscClaimTypes {
public const string CircleMembership = "CircleMembership";
public const string GoogleUserId = "GoogleUserId";
}