summaryrefslogtreecommitdiff
path: root/src/services/account/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/account/index.ts')
-rw-r--r--src/services/account/index.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/services/account/index.ts b/src/services/account/index.ts
deleted file mode 100644
index d2a91bd..0000000
--- a/src/services/account/index.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-import { ServiceParams } from '../../lib/ServiceContext';
-import { transformDate } from '../transforms';
-
-const service: ServiceParams = {
- route: 'account',
- name: 'Расчётный счёт',
- tableFields: [
- { key: 'date', label: 'Дата', transform: transformDate },
- { key: 'amount', label: 'Сумма' },
- ],
- actions: [
- {
- name: 'Загрузить выписку',
- route: '/transfers/upload',
- },
- ],
- rowLink: item => `/transfers?date=${item.date}`,
-};
-
-export default service;