mirror of https://github.com/Ombi-app/Ombi
Merge branch 'feature/v4' of https://github.com/tidusjar/Ombi into feature/v4
commit
0e7cbe5c6b
@ -0,0 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Twilio" Version="5.37.2" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
@ -1,3 +1,3 @@
|
||||
<div *ngIf="movie && radarrEnabled">
|
||||
<div *ngIf="movie && radarrEnabled" class="text-center">
|
||||
<button mat-raised-button color="warn" class="text-center" (click)="openAdvancedOptions();">Advanced Options</button>
|
||||
</div>
|
@ -0,0 +1,4 @@
|
||||
export enum UpdateType {
|
||||
Delete,
|
||||
Approve
|
||||
}
|
@ -0,0 +1,37 @@
|
||||
<div class="container" style="padding-top: 3%;">
|
||||
<div [formGroup]="form" class="col">
|
||||
<div formGroupName="whatsAppSettings" class="row">
|
||||
<div class="col">
|
||||
<div>
|
||||
<mat-slide-toggle formControlName="enabled">Enable</mat-slide-toggle>
|
||||
</div>
|
||||
|
||||
<div class="md-form-field">
|
||||
<mat-form-field>
|
||||
<input matInput placeholder="From Number" formControlName="from" matTooltip="The mobile number that the WhatsApp message is from, with the international prefix">
|
||||
</mat-form-field>
|
||||
</div>
|
||||
<div class="md-form-field">
|
||||
<mat-form-field>
|
||||
<input matInput placeholder="Account SID" formControlName="accountSid" matTooltip="The Account SID that you can find from the Programmable SMS Dashboard">
|
||||
</mat-form-field>
|
||||
</div>
|
||||
<div class="md-form-field">
|
||||
<mat-form-field>
|
||||
<input matInput placeholder="Authentication Token" formControlName="authToken" matTooltip="The Auth Token that you can find from the Programmable SMS Dashboard">
|
||||
</mat-form-field>
|
||||
</div>
|
||||
<div class="md-form-field">
|
||||
<div>
|
||||
<button mat-raised-button type="button" color="accent" (click)="test(form)">Test</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<notification-templates [templates]="templates" [showSubject]="false"></notification-templates>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in new issue