47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
import { UserGroups, UserGroupJoinings } from "../../../../../models/index.js";
|
|
import { genId } from "../../../../../misc/gen-id.js";
|
|
import define from "../../../define.js";
|
|
export const meta = {
|
|
tags: [
|
|
"groups"
|
|
],
|
|
requireCredential: true,
|
|
kind: "write:user-groups",
|
|
description: "Create a new group.",
|
|
res: {
|
|
type: "object",
|
|
optional: false,
|
|
nullable: false,
|
|
ref: "UserGroup"
|
|
}
|
|
};
|
|
export const paramDef = {
|
|
type: "object",
|
|
properties: {
|
|
name: {
|
|
type: "string",
|
|
minLength: 1,
|
|
maxLength: 100
|
|
}
|
|
},
|
|
required: [
|
|
"name"
|
|
]
|
|
};
|
|
export default define(meta, paramDef, async (ps, user)=>{
|
|
const userGroup = await UserGroups.insert({
|
|
id: genId(),
|
|
createdAt: new Date(),
|
|
userId: user.id,
|
|
name: ps.name
|
|
}).then((x)=>UserGroups.findOneByOrFail(x.identifiers[0]));
|
|
// Push the owner
|
|
await UserGroupJoinings.insert({
|
|
id: genId(),
|
|
createdAt: new Date(),
|
|
userId: user.id,
|
|
userGroupId: userGroup.id
|
|
});
|
|
return await UserGroups.pack(userGroup);
|
|
});
|