cloudstack/ui/src/views
Rohit Yadav 135ddf8b98 config: action args remapping framework
This implements actions args remapping framework which allows developers
to specify how to provide/show args to the user/admin or how to override
based on the resource by means of (a) `value(record)` function, (b)
statically defined `api` name, (c) `options` array.

For example, in the config file:

```
  args: ['id', 'virtualmachineid', 'mode'],
  mapping: {
    id: {
      api: 'listIsos'
    },
    virtualmachineid: {
      value: (record, params) => { return record.id }
    },
    mode: {
      options: ['http', 'nfs', 'something else']
    }
  }
```

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
2021-01-20 07:06:14 +05:30
..
auth components: reusable details settings and new fixes/features (#38) 2021-01-20 07:06:14 +05:30
compute components: reusable details settings and new fixes/features (#38) 2021-01-20 07:06:14 +05:30
dashboard components: styling and placement refactoring 2021-01-20 07:06:14 +05:30
exception src: add apache v2.0 license header to files 2021-01-20 07:06:14 +05:30
image components: reusable details settings and new fixes/features (#38) 2021-01-20 07:06:14 +05:30
infra components: reusable details settings and new fixes/features (#38) 2021-01-20 07:06:14 +05:30
network config: fix listing of ISOs 2021-01-20 07:06:14 +05:30
offering config: fix duplicate route definition issue 2021-01-20 07:06:14 +05:30
setting src: add apache v2.0 license header to files 2021-01-20 07:06:14 +05:30
storage src: add apache v2.0 license header to files 2021-01-20 07:06:14 +05:30
AutogenView.vue config: action args remapping framework 2021-01-20 07:06:14 +05:30