Skip to content

Commit 83a04a3

Browse files
authored
Feature/workflow container (Part 1) (#276)
* moving workflow into containers * fixing lint * fixing license
1 parent bec31c5 commit 83a04a3

32 files changed

+88
-20
lines changed

client/containers/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ export {
3636
getters as settingsWorkflowHistoryGetters,
3737
mutations as settingsWorkflowHistoryMutations,
3838
} from './settings-workflow-history';
39+
export { container as Workflow } from './workflow';
3940
export {
4041
container as WorkflowHistory,
4142
getDefaultState as getWorkflowHistoryDefaultState,
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// Copyright (c) 2017-2021 Uber Technologies Inc.
2+
//
3+
//
4+
// Permission is hereby granted, free of charge, to any person obtaining a copy
5+
// of this software and associated documentation files (the "Software"), to deal
6+
// in the Software without restriction, including without limitation the rights
7+
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
// copies of the Software, and to permit persons to whom the Software is
9+
// furnished to do so, subject to the following conditions:
10+
//
11+
// The above copyright notice and this permission notice shall be included in
12+
// all copies or substantial portions of the Software.
13+
//
14+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20+
// THE SOFTWARE.
21+
22+
export const RETRY_COUNT_MAX = 3;
23+
export const RETRY_TIMEOUT = 6000;

client/routes/workflow/helpers/event-full-transforms.js renamed to client/containers/workflow/helpers/event-full-transforms.js

File renamed without changes.

client/routes/workflow/helpers/event-full-transforms.spec.js renamed to client/containers/workflow/helpers/event-full-transforms.spec.js

File renamed without changes.
File renamed without changes.

client/routes/workflow/helpers/get-event-details.spec.js renamed to client/containers/workflow/helpers/get-event-details.spec.js

File renamed without changes.

client/routes/workflow/helpers/get-event-full-details.js renamed to client/containers/workflow/helpers/get-event-full-details.js

File renamed without changes.

client/routes/workflow/helpers/get-event-full-details.spec.js renamed to client/containers/workflow/helpers/get-event-full-details.spec.js

File renamed without changes.

client/routes/workflow/helpers/get-event-kvps-highlight.js renamed to client/containers/workflow/helpers/get-event-kvps-highlight.js

File renamed without changes.

0 commit comments

Comments
 (0)