rez_core 4.0.179 → 4.0.180
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -185,9 +185,7 @@ export class ModuleAccessService {
|
|
|
185
185
|
// Step 3: If level_type is SCH, check school status using raw query
|
|
186
186
|
if (level_type === 'SCH') {
|
|
187
187
|
const result = await this.dataSource.query(
|
|
188
|
-
`SELECT * FROM sso_school WHERE id = ${level_id}
|
|
189
|
-
[String(level_id)],
|
|
190
|
-
);
|
|
188
|
+
`SELECT * FROM sso_school WHERE id = ${level_id}`);
|
|
191
189
|
|
|
192
190
|
const school = result?.[0];
|
|
193
191
|
console.log('step 3', school);
|