-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #256 from sebadob/dyn-client-reg-1
Dynamic Client Registration
- Loading branch information
Showing
17 changed files
with
759 additions
and
77 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
create table clients_dyn | ||
( | ||
id varchar not null | ||
constraint clients_dyn_pk | ||
primary key | ||
constraint clients_dyn_clients_id_fk | ||
references clients | ||
on update cascade on delete cascade, | ||
created bigint not null, | ||
last_used bigint, | ||
registration_token bytea not null, | ||
token_endpoint_auth_method varchar not null | ||
); | ||
|
||
create index clients_dyn_last_used_index | ||
on clients_dyn (last_used); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
create table clients_dyn | ||
( | ||
id text not null | ||
constraint clients_dyn_pk | ||
primary key | ||
constraint clients_dyn_clients_id_fk | ||
references clients | ||
on update cascade on delete cascade, | ||
created integer not null, | ||
last_used integer, | ||
registration_token blob not null, | ||
token_endpoint_auth_method text not null | ||
); | ||
|
||
create index clients_dyn_last_used_index | ||
on clients_dyn (last_used); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.