ClientCredentials as last element in GrantFlow enum

This commit is contained in:
Mats Anderberg 2025-03-26 07:48:58 +00:00 committed by Nyall Dawson
parent 2ea42618c7
commit de98779ebb

View File

@ -47,9 +47,9 @@ class QgsAuthOAuth2Config : public QObject
AuthCode, //!< See http://tools.ietf.org/html/rfc6749#section-4.1
Implicit, //!< See http://tools.ietf.org/html/rfc6749#section-4.2
ResourceOwner, //!< See http://tools.ietf.org/html/rfc6749#section-4.3
ClientCredentials, //!< See http://tools.ietf.org/html/rfc6749#section-4.4
Pkce, //!< See https://www.rfc-editor.org/rfc/rfc7636
Last = Pkce
ClientCredentials, //!< See http://tools.ietf.org/html/rfc6749#section-4.4
Last = ClientCredentials
};
Q_ENUM( GrantFlow )