Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improvement(ide-api), support "name" with scope-name for create-lane API #9065

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions scopes/harmony/api-server/api-for-ide.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import { RemoveMain } from '@teambit/remove';
import { compact } from 'lodash';
import { getCloudDomain } from '@teambit/legacy/dist/constants';
import { ConfigMain } from '@teambit/config';
import { LANE_REMOTE_DELIMITER, LaneId } from '@teambit/lane-id';

const FILES_HISTORY_DIR = 'files-history';
const LAST_SNAP_DIR = 'last-snap';
Expand Down Expand Up @@ -171,6 +172,10 @@ export class APIForIDE {
}

async createLane(name: string) {
if (name.includes(LANE_REMOTE_DELIMITER)) {
const laneId = LaneId.parse(name);
return this.lanes.createLane(laneId.name, { scope: laneId.scope });
}
return this.lanes.createLane(name);
}

Expand Down