gitbeaker/src/services/GroupCustomAttributes.js
2018-03-17 00:04:21 -04:00

10 lines
221 B
JavaScript

import { ResourceCustomAttributes } from '../templates';
class GroupCustomAttributes extends ResourceCustomAttributes {
constructor(options) {
super('groups', options);
}
}
export default GroupCustomAttributes;