8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
|
import NamedPathAdapter from '../named-path';
|
||
|
|
||
|
export default class OidcScopeAdapter extends NamedPathAdapter {
|
||
|
pathForType() {
|
||
|
return 'identity/oidc/scope';
|
||
|
}
|
||
|
}
|