This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / consts.go
450 B 16 lines
1package appview 2 3const ( 4 SESSION_COOKIE_SECRET = "TODO_CHANGE_ME" 5 SESSION_NAME = "appview-session" 6 SESSION_HANDLE = "handle" 7 SESSION_DID = "did" 8 SESSION_PDS = "pds" 9 SESSION_ACCESSJWT = "accessJwt" 10 SESSION_REFRESHJWT = "refreshJwt" 11 SESSION_EXPIRY = "expiry" 12 SESSION_AUTHENTICATED = "authenticated" 13 14 SALT = "TODO_RANDOM_SALT" 15 TIME_LAYOUT = "2006-01-02 15:04:05.999999999 -0700 MST" 16)