More work on getting auth fetch verification working
This commit is contained in:
parent
7eac1db475
commit
9957ba8302
12 changed files with 434 additions and 205 deletions
|
@ -136,4 +136,14 @@ type IUser interface {
|
|||
//
|
||||
// DELETE FROM @@table WHERE deleted_at IS NOT NULL AND deleted_at + interval '30 days' < NOW()
|
||||
GdprUsers() error
|
||||
|
||||
// Get user by AP url
|
||||
//
|
||||
// SELECT * FROM @@table
|
||||
// WHERE id in (
|
||||
// SELECT user_id FROM user_remote_links
|
||||
// WHERE ap_link = @url LIMIT 1
|
||||
// )
|
||||
// LIMIT 1
|
||||
GetRemoteAccountByApUrl(url string) (*gen.T, error)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue