mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 16:00:50 +00:00
8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
import Api from '~/api';
|
|
|
|
export default {
|
|
commit(projectId, payload) {
|
|
return Api.commitMultiple(projectId, payload);
|
|
},
|
|
};
|