@solidstarters/solid-core 1.2.11 → 1.2.12

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidstarters/solid-core",
3
- "version": "1.2.11",
3
+ "version": "1.2.12",
4
4
  "description": "This module is a NestJS module containing all the required core providers required by a Solid application",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -167,7 +167,8 @@ export class ModuleMetadataSeederService {
167
167
  // 1. Give all permissions to the Admin role.
168
168
  this.logger.log(`About to add all permissions to the Admin role`);
169
169
  await this.roleService.addAllPermissionsToRole("Admin");
170
-
170
+ // 2. Give getAllSettings permissions to the Public role.
171
+ await this.roleService.addPermissionToRole('Public', 'SettingController.getAllSettings');
171
172
  this.logger.log(`All Seeders finished`);
172
173
 
173
174
  }