iptdevs-design-system 3.2.137 → 3.2.138

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.
@@ -1263,6 +1263,10 @@ class BaseService {
1263
1263
  let response = user === null ? '' : user.name;
1264
1264
  return response;
1265
1265
  }
1266
+ getUserCampusName() {
1267
+ let user = this.storageService.getCurrentUser();
1268
+ return user?.campus_name ?? '';
1269
+ }
1266
1270
  getUserCode() {
1267
1271
  let user = this.storageService.getCurrentUser();
1268
1272
  let response = user === null ? -1 : user.code;