auth

Paddy 2014-08-16 Parent:63e86d129238 Child:9fe684b33b3d

15:fc5df8e68c7b Go to Latest

auth/storage.go

Render results. Render JSON tokens and errors. Render HTML errors, confirmation, and login pages.

History
     1.1 --- a/storage.go	Sat Aug 16 02:57:49 2014 -0400
     1.2 +++ b/storage.go	Sat Aug 16 05:33:23 2014 -0400
     1.3 @@ -6,7 +6,7 @@
     1.4  	GetClient(id uuid.ID) (Client, error)
     1.5  	CreateClient(name, logo, redirectURI string, owner uuid.ID) (Client, error)
     1.6  	UpdateClient(client uuid.ID, name, logo, redirectURI *string) error
     1.7 -	RemoveClient(id uuid.IDt) error
     1.8 +	RemoveClient(id uuid.ID) error
     1.9  	ListClients(id uuid.ID, page, num int) ([]Client, error)
    1.10  }
    1.11