Skip to content

Commit

Permalink
N21-2184 add synced column (#3406)
Browse files Browse the repository at this point in the history
* add column and feature flag
  • Loading branch information
IgorCapCoder authored Sep 24, 2024
1 parent 94ac68b commit 117d28e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/pages/administration/RoomsOverview.page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,15 @@ const headers = computed(() => {
sortable: true,
},
];
if (courseSyncEnabled.value) {
headerList.push({
key: "syncedGroup",
title: t("pages.administration.classes.header.sync"),
sortable: false,
});
}
headerList.push(
{
key: "classNames",
Expand Down

0 comments on commit 117d28e

Please sign in to comment.