@@ -517,10 +459,6 @@ class Search extends Component
{
.display_signatures
}
showNamespace
- synclistSwitch={this.renderSyncToogle(
- c.collection_version.name,
- c.collection_version.namespace,
- )}
{...this.renderMenu(true, c)}
/>
))}
@@ -530,20 +468,6 @@ class Search extends Component {
);
}
- private getSynclist() {
- MySyncListAPI.list().then((result) => {
- // ignore results if more than 1 is returned
- // TODO: should we throw an error for this or just ignore it?
- if (result.data.meta.count === 1) {
- this.setState({ synclist: result.data.data[0] });
- } else {
- console.error(
- `my-synclist returned ${result.data.meta.count} synclists`,
- );
- }
- });
- }
-
private queryCollections() {
this.setState({ loading: true }, () => {
CollectionVersionAPI.list({
diff --git a/src/containers/token/token-insights.tsx b/src/containers/token/token-insights.tsx
index 2480483894..343e872276 100644
--- a/src/containers/token/token-insights.tsx
+++ b/src/containers/token/token-insights.tsx
@@ -159,13 +159,6 @@ class TokenInsights extends Component {
-
-
- Synclists are deprecated in AAP 2.4 and will be removed in a
- future release, use client-side requirements.yml
{' '}
- instead.
-
-
{t`SSO URL`}
diff --git a/src/utilities/translate-locked-role.ts b/src/utilities/translate-locked-role.ts
index 2618cbe9fe..152ac37e69 100644
--- a/src/utilities/translate-locked-role.ts
+++ b/src/utilities/translate-locked-role.ts
@@ -17,7 +17,6 @@ export const translateLockedRole = (name, description) =>
'galaxy.execution_environment_namespace_owner': t`Create and update execution environments under existing container namespaces.`,
'galaxy.execution_environment_publisher': t`Push and change execution environments.`,
'galaxy.group_admin': t`View, add, remove and change groups.`,
- 'galaxy.synclist_owner': t`View, add, remove and change synclists.`,
'galaxy.task_admin': t`View and cancel any task.`,
'galaxy.user_admin': t`View, add, remove and change users.`,
})[name] || description;
diff --git a/src/utilities/translate-task.ts b/src/utilities/translate-task.ts
index 8e373f4b68..34ff283a9c 100644
--- a/src/utilities/translate-task.ts
+++ b/src/utilities/translate-task.ts
@@ -2,13 +2,10 @@ import { t } from '@lingui/macro';
export const translateTask = (name) =>
({
- 'galaxy_ng.app.tasks.curate_all_synclist_repository': t`Curate all synclist repositories`,
- 'galaxy_ng.app.tasks.curate_synclist_repository': t`Curate synclist repository`,
'galaxy_ng.app.tasks.import_and_auto_approve': t`Import and auto approve`,
'galaxy_ng.app.tasks.import_and_move_to_staging': t`Import and move to staging`,
'galaxy_ng.app.tasks.promotion._remove_content_from_repository': t`Remove content from repository`,
'galaxy_ng.app.tasks.publishing.import_and_auto_approve': t`Import and auto approve`,
- 'galaxy_ng.app.tasks.synclist.curate_synclist_repository_batch': t`Curate synclist repository batch`,
'pulp_ansible.app.tasks.collections.collection_sync': t`Collections sync`,
'pulp_ansible.app.tasks.collections.import_collection': t`Import collection`,
'pulp_ansible.app.tasks.collections.sync': t`Collections sync`,