mirror of https://github.com/docker/docs.git
12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
'use strict';
|
|
|
|
var debug = require('debug')('hub:actions:deleteAutoBuildPushTriggerItem');
|
|
|
|
export default function(actionContext, {isNew, index}) {
|
|
if (isNew) {
|
|
actionContext.dispatch('DELETE_AUTOBUILD_NEW_TAG_ITEM', index);
|
|
} else {
|
|
actionContext.dispatch('DELETE_AUTOBUILD_PUSH_TRIGGER_ITEM', index);
|
|
}
|
|
}
|