Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: adjust source names to "Team" instead of cicles
Signed-off-by: Ferdinand Thiessen <[email protected]>
  • Loading branch information
susnux authored and CarlSchwan committed Sep 26, 2025
commit 52217fa69ae4a8da5541cb90593bd6a637a49b82
6 changes: 3 additions & 3 deletions lib/AppInfo/Capabilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,12 @@ private function getCapabilitiesCircleConstants(): array {
Member::TYPE_GROUP => $this->l10n->t('Nextcloud Group'),
Member::TYPE_MAIL => $this->l10n->t('Email address'),
Member::TYPE_CONTACT => $this->l10n->t('Contact'),
Member::TYPE_CIRCLE => $this->l10n->t('Circle'),
Member::TYPE_CIRCLE => $this->l10n->t('Team'),
Member::TYPE_APP => $this->l10n->t('Nextcloud App')
],
'extra' => [
Member::APP_CIRCLES => 'Circles App',
Member::APP_OCC => 'Admin Command Line'
Member::APP_CIRCLES => $this->l10n->t('Teams App'),
Member::APP_OCC => $this->l10n->t('Admin Command Line'),
]
]
];
Expand Down
6 changes: 3 additions & 3 deletions lib/Model/Circle.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class Circle extends ManagedModel implements IEntity, IDeserializable, IQueryRow


/**
* Note: When editing those values, update lib/Application/Capabilities.php
* Note: When editing those values, update lib/AppInfo/Capabilities.php
*
* @see Capabilities::getCapabilitiesCircleConstants()
* @var array
Expand All @@ -134,9 +134,9 @@ class Circle extends ManagedModel implements IEntity, IDeserializable, IQueryRow
2 => 'Nextcloud Group',
4 => 'Email Address',
8 => 'Contact',
16 => 'Circle',
16 => 'Team',
10000 => 'Nextcloud App',
10001 => 'Circles App',
10001 => 'Teams App',
10002 => 'Admin Command Line',
11000 => '3rd party app',
11010 => 'Collectives App'
Expand Down
Loading