18 lines
442 B
JavaScript
18 lines
442 B
JavaScript
import AppConfig from '../../models/app-config.js';
|
|
|
|
const createAppAuthClient = async (_parent, params, context) => {
|
|
context.currentUser.can('update', 'App');
|
|
|
|
const appConfig = await AppConfig.query()
|
|
.findById(params.input.appConfigId)
|
|
.throwIfNotFound();
|
|
|
|
const appAuthClient = await appConfig
|
|
.$relatedQuery('appAuthClients')
|
|
.insert(params.input);
|
|
|
|
return appAuthClient;
|
|
};
|
|
|
|
export default createAppAuthClient;
|