mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 02:51:14 +00:00
feat: Synchronize deletions when pulling from source control (#12170)
Co-authored-by: r00gm <raul00gm@gmail.com>
This commit is contained in:
@@ -191,7 +191,7 @@ export class SourceControlController {
|
||||
@Body payload: PullWorkFolderRequestDto,
|
||||
): Promise<SourceControlledFile[] | ImportResult | PullResult | undefined> {
|
||||
try {
|
||||
const result = await this.sourceControlService.pullWorkfolder(req.user.id, payload);
|
||||
const result = await this.sourceControlService.pullWorkfolder(req.user, payload);
|
||||
res.statusCode = result.statusCode;
|
||||
return result.statusResult;
|
||||
} catch (error) {
|
||||
|
||||
Reference in New Issue
Block a user