mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
feat: Add scopes and role to create project endpoint (no-changelog) (#10145)
This commit is contained in:
parent
467051580b
commit
a51e86f20b
|
@ -48,7 +48,7 @@ export class ProjectController {
|
||||||
@GlobalScope('project:create')
|
@GlobalScope('project:create')
|
||||||
// Using admin as all plans that contain projects should allow admins at the very least
|
// Using admin as all plans that contain projects should allow admins at the very least
|
||||||
@Licensed('feat:projectRole:admin')
|
@Licensed('feat:projectRole:admin')
|
||||||
async createProject(req: ProjectRequest.Create): Promise<Project> {
|
async createProject(req: ProjectRequest.Create) {
|
||||||
try {
|
try {
|
||||||
const project = await this.projectsService.createTeamProject(req.body.name, req.user);
|
const project = await this.projectsService.createTeamProject(req.body.name, req.user);
|
||||||
|
|
||||||
|
@ -57,7 +57,16 @@ export class ProjectController {
|
||||||
role: req.user.role,
|
role: req.user.role,
|
||||||
});
|
});
|
||||||
|
|
||||||
return project;
|
return {
|
||||||
|
...project,
|
||||||
|
role: 'project:admin',
|
||||||
|
scopes: [
|
||||||
|
...combineScopes({
|
||||||
|
global: this.roleService.getRoleScopes(req.user.role),
|
||||||
|
project: this.roleService.getRoleScopes('project:admin'),
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
};
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e instanceof TeamProjectOverQuotaError) {
|
if (e instanceof TeamProjectOverQuotaError) {
|
||||||
throw new BadRequestError(e.message);
|
throw new BadRequestError(e.message);
|
||||||
|
|
|
@ -29,6 +29,7 @@ import { CacheService } from '@/services/cache/cache.service';
|
||||||
import { mockInstance } from '../shared/mocking';
|
import { mockInstance } from '../shared/mocking';
|
||||||
import { ActiveWorkflowManager } from '@/ActiveWorkflowManager';
|
import { ActiveWorkflowManager } from '@/ActiveWorkflowManager';
|
||||||
import { ProjectRepository } from '@/databases/repositories/project.repository';
|
import { ProjectRepository } from '@/databases/repositories/project.repository';
|
||||||
|
import { RoleService } from '@/services/role.service';
|
||||||
|
|
||||||
const testServer = utils.setupTestServer({
|
const testServer = utils.setupTestServer({
|
||||||
endpointGroups: ['project'],
|
endpointGroups: ['project'],
|
||||||
|
@ -394,6 +395,10 @@ describe('POST /projects/', () => {
|
||||||
expect(async () => {
|
expect(async () => {
|
||||||
await findProject(respProject.id);
|
await findProject(respProject.id);
|
||||||
}).not.toThrow();
|
}).not.toThrow();
|
||||||
|
expect(resp.body.data.role).toBe('project:admin');
|
||||||
|
for (const scope of Container.get(RoleService).getRoleScopes('project:admin')) {
|
||||||
|
expect(resp.body.data.scopes).toContain(scope);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should allow to create a team projects if below the quota', async () => {
|
test('should allow to create a team projects if below the quota', async () => {
|
||||||
|
@ -871,7 +876,7 @@ describe('DELETE /project/:projectId', () => {
|
||||||
{ project: otherProject, role: 'workflow:editor' },
|
{ project: otherProject, role: 'workflow:editor' },
|
||||||
]);
|
]);
|
||||||
await shareWorkflowWithProjects(sharedWorkflow2, [
|
await shareWorkflowWithProjects(sharedWorkflow2, [
|
||||||
{ project: otherProject, role: 'workflow:user' },
|
{ project: otherProject, role: 'workflow:editor' },
|
||||||
]);
|
]);
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -928,7 +933,7 @@ describe('DELETE /project/:projectId', () => {
|
||||||
{ project: otherProject, role: 'workflow:editor' },
|
{ project: otherProject, role: 'workflow:editor' },
|
||||||
]);
|
]);
|
||||||
await shareWorkflowWithProjects(ownedWorkflow2, [
|
await shareWorkflowWithProjects(ownedWorkflow2, [
|
||||||
{ project: otherProject, role: 'workflow:user' },
|
{ project: otherProject, role: 'workflow:editor' },
|
||||||
]);
|
]);
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue