0/3 threads resolved
changed the description
mentioned in merge request engine!254
marked as a Work In Progress
added 121 commits
- 06d5f495...6a48c5b1 - 119 commits from branch
master
- 0fa095f2 - Merge branch 'master' of gitlab.com:minds/front into epic/37-wire
- 153f98d7 - (feat): put everything behind a feature flag
- 06d5f495...6a48c5b1 - 119 commits from branch
added 20 commits
- 7feb3e46...5ed6e576 - 18 commits from branch
master
- c822fc52 - (fix): move usd into canary flag
- dbe41ee5 - Merge branch 'master' of gitlab.com:minds/front into epic/37-wire
- 7feb3e46...5ed6e576 - 18 commits from branch
unmarked as a Work In Progress
102 <input 103 formControlName="city" 104 type="text" 105 placeholder="eg. New York City" 106 i18n-placeholder="@@MONETIZATION__ONBOARDING__CITY_PLACEHOLDER" 107 class="m-input" 108 > 109 </div> 110 111 <div class="mdl-cell mdl-cell--6-col" *ngIf="isCountry(['US'])"> 112 <label i18n="State as a country entity@@M__COMMON__COUNTRY_STATE">State</label> 113 <minds-state-input [state]="form.controls.state.value" (stateChange)="form.controls.state.setValue($event)" [disabled]="restrictAsVerified"></minds-state-input> 114 </div> 115 116 <div class="mdl-cell mdl-cell--6-col" *ngIf="isCountry(['AU', 'CA', 'IE'])"> 117 <label i18n="@@MONETIZATION__ONBOARDING__STATE_PROVINCE_LABEL">State / Province</label> - Developer
These variable country codes feel like they should be in their own component
109 this.minds.user.programs.push('affiliate'); 110 111 this.minds.user.merchant = { 112 'id': response.account.id, 113 'service': 'stripe', 114 }; 115 116 this.router.navigate(['/wallet/usd/']); 117 } catch(e) { 118 this.inProgress = false; 119 this.error = e.message; 120 this.detectChanges(); 121 } 122 } 123 124 update() { - Developer
Does this need to be async?
62 71 tick(); - Developer
Nothing wrong with the unit tests, but we either need e2e testing or a card to e2e test the wire service