| .. | .. |
|---|
| 16 | 16 | import { ListingBase } from './base'; |
|---|
| 17 | 17 | |
|---|
| 18 | 18 | |
|---|
| 19 | | -var app_example = { |
|---|
| 20 | | - code: 'CICS', |
|---|
| 21 | | - creation_timestamp: 1418384439000, |
|---|
| 22 | | - description: 'Wellbore integrity analysis software', |
|---|
| 19 | +var org_example = { |
|---|
| 23 | 20 | id: 1, |
|---|
| 24 | | - license_filename: 'config_server.lic', |
|---|
| 25 | | - name: 'CurisIntegrity', |
|---|
| 26 | | - metadata: |
|---|
| 27 | | - [ { key: 'max_docs', |
|---|
| 28 | | - value: '250000', |
|---|
| 29 | | - readonly: true, |
|---|
| 30 | | - mandatory: true } ] |
|---|
| 21 | + code: 'BP01', |
|---|
| 22 | + creation_timestamp: 1418384454000, |
|---|
| 23 | + name: 'British Petroleum', |
|---|
| 24 | + org_parent_id:2, |
|---|
| 25 | + org_parent_name:"CurisTec", |
|---|
| 26 | + users_ids: [ 'rym' ] |
|---|
| 31 | 27 | } |
|---|
| 32 | 28 | |
|---|
| 33 | 29 | @Component({ |
|---|
| .. | .. |
|---|
| 38 | 34 | |
|---|
| 39 | 35 | columns: ITdDataTableColumn[] = [ |
|---|
| 40 | 36 | { name: 'code', label: 'Code', tooltip: 'Organization code' }, |
|---|
| 41 | | - { name: 'name', label: 'Application name' }, |
|---|
| 37 | + { name: 'name', label: 'Organization name' }, |
|---|
| 42 | 38 | { name: 'creation_timestamp', label: 'Creation date' }, |
|---|
| 43 | 39 | { name: 'menu', label: '' } |
|---|
| 44 | 40 | ]; |
|---|