diff options
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/admin/friends/friend-add/friend-add.component.html | 4 | ||||
-rw-r--r-- | client/src/app/admin/friends/friend-add/friend-add.component.ts | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/client/src/app/admin/friends/friend-add/friend-add.component.html b/client/src/app/admin/friends/friend-add/friend-add.component.html index 621822860..eebe033f9 100644 --- a/client/src/app/admin/friends/friend-add/friend-add.component.html +++ b/client/src/app/admin/friends/friend-add/friend-add.component.html | |||
@@ -22,5 +22,9 @@ | |||
22 | </div> | 22 | </div> |
23 | </div> | 23 | </div> |
24 | 24 | ||
25 | <div *ngIf="canMakeFriends() === false" class="alert alert-warning"> | ||
26 | It seems that you are not on a HTTPS pod. Your webserver need to have TLS activated in order to make friends. | ||
27 | </div> | ||
28 | |||
25 | <input type="submit" value="Make friends" class="btn btn-default" [disabled]="!isFormValid()"> | 29 | <input type="submit" value="Make friends" class="btn btn-default" [disabled]="!isFormValid()"> |
26 | </form> | 30 | </form> |
diff --git a/client/src/app/admin/friends/friend-add/friend-add.component.ts b/client/src/app/admin/friends/friend-add/friend-add.component.ts index 86b018de2..14f24c192 100644 --- a/client/src/app/admin/friends/friend-add/friend-add.component.ts +++ b/client/src/app/admin/friends/friend-add/friend-add.component.ts | |||
@@ -27,6 +27,10 @@ export class FriendAddComponent implements OnInit { | |||
27 | this.hosts.push(''); | 27 | this.hosts.push(''); |
28 | } | 28 | } |
29 | 29 | ||
30 | canMakeFriends() { | ||
31 | return window.location.protocol === 'https://'; | ||
32 | } | ||
33 | |||
30 | customTrackBy(index: number, obj: any): any { | 34 | customTrackBy(index: number, obj: any): any { |
31 | return index; | 35 | return index; |
32 | } | 36 | } |