mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
Updated members import mapping fields
no refs. - made mapping fields ("Import as") human readable in members import
This commit is contained in:
parent
b3122ae2d8
commit
1b98800bfb
1 changed files with 8 additions and 8 deletions
|
@ -3,14 +3,14 @@ import {action} from '@ember/object';
|
|||
import {tracked} from '@glimmer/tracking';
|
||||
|
||||
const FIELD_MAPPINGS = [
|
||||
{label: 'email', value: 'email'},
|
||||
{label: 'name', value: 'name'},
|
||||
{label: 'note', value: 'note'},
|
||||
{label: 'subscribed_to_emails', value: 'subscribed_to_emails'},
|
||||
{label: 'stripe_customer_id', value: 'stripe_customer_id'},
|
||||
{label: 'complimentary_plan', value: 'complimentary_plan'},
|
||||
{label: 'labels', value: 'labels'},
|
||||
{label: 'created_at', value: 'created_at'}
|
||||
{label: 'Email', value: 'email'},
|
||||
{label: 'Name', value: 'name'},
|
||||
{label: 'Note', value: 'note'},
|
||||
{label: 'Subscribed to emails', value: 'subscribed_to_emails'},
|
||||
{label: 'Stripe Customer ID', value: 'stripe_customer_id'},
|
||||
{label: 'Complimentary plan', value: 'complimentary_plan'},
|
||||
{label: 'Labels', value: 'labels'},
|
||||
{label: 'Created at', value: 'created_at'}
|
||||
];
|
||||
|
||||
export default class extends Component {
|
||||
|
|
Loading…
Add table
Reference in a new issue