summaryrefslogtreecommitdiff
path: root/animism-align/frontend/views/timestamp/timestamp.reducer.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-07-04 16:37:19 +0200
committerJules Laplace <julescarbon@gmail.com>2020-07-04 16:37:19 +0200
commite973412b5ea29685f4fa260d8eb44baae095fb81 (patch)
tree0e859ab0541187ed769e654663730834b998f3d1 /animism-align/frontend/views/timestamp/timestamp.reducer.js
parent3e1c6f81bbdad758b8756955fce82da49a564611 (diff)
rename timestamp to annotation
Diffstat (limited to 'animism-align/frontend/views/timestamp/timestamp.reducer.js')
-rw-r--r--animism-align/frontend/views/timestamp/timestamp.reducer.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/animism-align/frontend/views/timestamp/timestamp.reducer.js b/animism-align/frontend/views/timestamp/timestamp.reducer.js
deleted file mode 100644
index e57110e..0000000
--- a/animism-align/frontend/views/timestamp/timestamp.reducer.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import * as types from '../../types'
-import { session, getDefault, getDefaultInt } from '../../session'
-
-import { crudState, crudReducer } from '../../api/crud.reducer'
-
-const initialState = crudState('timestamp', {
- options: {
- sort: 'start_ts desc',
- }
-})
-
-const reducer = crudReducer('timestamp')
-
-export default function timestampReducer(state = initialState, action) {
- // console.log(action.type, action)
- state = reducer(state, action)
- switch (action.type) {
- default:
- return state
- }
-}