16 lines
319 B
JavaScript
16 lines
319 B
JavaScript
export default () => ({
|
|
endpoint: null,
|
|
branchesEndpoint: null,
|
|
isFetching: false,
|
|
branches: [],
|
|
projects: [],
|
|
selectedBranch: '',
|
|
pushCode: false,
|
|
branchCollaboration: false,
|
|
modalTitle: '',
|
|
existingBranch: '',
|
|
defaultBranch: '',
|
|
branch: '',
|
|
targetProjectId: '',
|
|
targetProjectName: '',
|
|
});
|