liquid_feedback_core

changeset 276:b1360dc846be

Added field "code_grant_multiple" to "api_client"
author jbe
date Fri Aug 10 15:00:07 2012 +0200 (2012-08-10)
parents fd496b372780
children 028a52d23e56
files core.sql
line diff
     1.1 --- a/core.sql	Thu Aug 09 02:59:06 2012 +0200
     1.2 +++ b/core.sql	Fri Aug 10 15:00:07 2012 +0200
     1.3 @@ -186,6 +186,7 @@
     1.4          "implicit_grant"        BOOLEAN         NOT NULL,
     1.5          "client_grant"          BOOLEAN         NOT NULL,
     1.6          "code_grant_validity_period" INTERVAL,
     1.7 +        "code_grant_multiple"        BOOLEAN,
     1.8          "access_level"               "api_access_level",
     1.9          "client_grant_access_level"  "api_access_level",
    1.10          "last_usage"            TIMESTAMPTZ     NOT NULL,
    1.11 @@ -210,6 +211,7 @@
    1.12  COMMENT ON COLUMN "api_client"."implicit_grant"             IS 'Enable OAuth2 Implicit Grant';
    1.13  COMMENT ON COLUMN "api_client"."client_grant"               IS 'Enable OAuth2 Client Credentials Grant';
    1.14  COMMENT ON COLUMN "api_client"."code_grant_validity_period" IS 'Maximum validity period of OAuth2 Authorization Code Grant, after which no more refresh is possible';
    1.15 +COMMENT ON COLUMN "api_client"."code_grant_multiple"        IS 'If set to FALSE, invalidates previously issued OAuth2 Refresh Tokens during authorization; If set to NULL, the member is asked interactively during authorization, whether previously issued authorizations shall be revoked';
    1.16  COMMENT ON COLUMN "api_client"."access_level"               IS 'Maximum access level for OAuth2 Authorization Code Grant and Implicit Grant';
    1.17  COMMENT ON COLUMN "api_client"."client_grant_access_level"  IS 'Maximum access level for OAuth2 Authorization Code Grant and Implicit Grant';
    1.18  COMMENT ON COLUMN "api_client"."last_usage"                 IS 'Date/time when this client registration was last used';

Impressum / About Us