(private readonly store: StoreService)
| 6 | @Injectable() |
| 7 | export class SettingsService { |
| 8 | constructor(private readonly store: StoreService) {} |
| 9 | |
| 10 | get(userId: string): Settings { |
| 11 | return this.store.userSettings.get(userId) as Settings; |
nothing calls this directly
no outgoing calls
no test coverage detected