Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

N21-724 Rename SANIS to Schulconnex / moin.schule #295

Merged
merged 1 commit into from
Feb 28, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ data:
ADMIN_API_URL: "http://api-admin-svc:4030/admin/api/"
SC_NAV_TITLE: "{{ SC_NAV_TITLE }}"
HOST: "https://{{ DOMAIN }}"
FEATURE_SCHOOL_SANIS_USER_MIGRATION_ENABLED: "{{ FEATURE_SCHOOL_SANIS_USER_MIGRATION_ENABLED|default(false, true) }}"
FEATURE_USER_LOGIN_MIGRATION_ENABLED: "{{ FEATURE_USER_LOGIN_MIGRATION_ENABLED|default(false, true) }}"
FEATURE_SHOW_OUTDATED_USERS: "{{ FEATURE_SHOW_OUTDATED_USERS|default(false, true) }}"
FEATURE_ENABLE_LDAP_SYNC_DURING_MIGRATION: "{{ FEATURE_ENABLE_LDAP_SYNC_DURING_MIGRATION|default(false, true) }}"
FEATURE_MEDIA_SHELF_ENABLED: "{{ FEATURE_MEDIA_SHELF_ENABLED|default(false, true) }}"
2 changes: 1 addition & 1 deletion controllers/schools.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const SCHOOL_FEATURES = [
'enableLdapSyncDuringMigration'
];

const USER_MIGRATION_ENABLED = isFeatureFlagTrue(process.env.FEATURE_SCHOOL_SANIS_USER_MIGRATION_ENABLED);
const USER_MIGRATION_ENABLED = isFeatureFlagTrue(process.env.FEATURE_USER_LOGIN_MIGRATION_ENABLED);
const SHOW_OUTDATED_USERS = isFeatureFlagTrue(process.env.FEATURE_SHOW_OUTDATED_USERS);
const ENABLE_LDAP_SYNC_DURING_MIGRATION = isFeatureFlagTrue(process.env.FEATURE_ENABLE_LDAP_SYNC_DURING_MIGRATION);

Expand Down
2 changes: 1 addition & 1 deletion controllers/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const moment = require('moment');
const { isFeatureFlagTrue } = require('../helpers/featureFlagHelper');
moment.locale('de');

const USER_MIGRATION_ENABLED = isFeatureFlagTrue(process.env.FEATURE_SCHOOL_SANIS_USER_MIGRATION_ENABLED);
const USER_MIGRATION_ENABLED = isFeatureFlagTrue(process.env.FEATURE_USER_LOGIN_MIGRATION_ENABLED);

const getTableActions = (item, path) => {
let tableActions = [
Expand Down