aboutsummaryrefslogtreecommitdiffstats
path: root/include/features.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-04-05 21:01:36 -0700
committerzotlabs <mike@macgirvin.com>2018-04-05 21:01:36 -0700
commit4a45c35c4e0e27b737d80a6f151b0b50aaef3d1e (patch)
tree1ddd74525c12c76ab13c5d8dae12872a7a74ed56 /include/features.php
parentf4c94ab121167ac34e550939f032e9982d69307b (diff)
downloadvolse-hubzilla-4a45c35c4e0e27b737d80a6f151b0b50aaef3d1e.tar.gz
volse-hubzilla-4a45c35c4e0e27b737d80a6f151b0b50aaef3d1e.tar.bz2
volse-hubzilla-4a45c35c4e0e27b737d80a6f151b0b50aaef3d1e.zip
oauth2 client settings page
Diffstat (limited to 'include/features.php')
-rw-r--r--include/features.php13
1 files changed, 11 insertions, 2 deletions
diff --git a/include/features.php b/include/features.php
index 5481c37a4..4859a01db 100644
--- a/include/features.php
+++ b/include/features.php
@@ -246,14 +246,23 @@ function get_features($filtered = true) {
[
'oauth_clients',
- t('OAuth Clients'),
- t('Manage authenticatication tokens for mobile and remote apps.'),
+ t('OAuth1 Clients'),
+ t('Manage OAuth1 authenticatication tokens for mobile and remote apps.'),
false,
get_config('feature_lock','oauth_clients'),
feature_level('oauth_clients',1),
],
[
+ 'oauth2_clients',
+ t('OAuth2 Clients'),
+ t('Manage OAuth2 authenticatication tokens for mobile and remote apps.'),
+ false,
+ get_config('feature_lock','oauth2_clients'),
+ feature_level('oauth2_clients',1),
+ ],
+
+ [
'access_tokens',
t('Access Tokens'),
t('Create access tokens so that non-members can access private content.'),