-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8cd33f3
commit 3c47443
Showing
11 changed files
with
161 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 7 additions & 1 deletion
8
Angular/CSharp_Angular/DatingApp/client/src/app/app.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
<h1>{{title}}</h1> | ||
<h1>{{title}}</h1> | ||
|
||
<ul> | ||
<li *ngFor="let user of users"> | ||
{{user.id}} - {{user.userName}} | ||
</li> | ||
</ul> |
19 changes: 16 additions & 3 deletions
19
Angular/CSharp_Angular/DatingApp/client/src/app/app.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,23 @@ | ||
import { Component } from '@angular/core'; | ||
import { HttpClient } from '@angular/common/http'; | ||
import { Component, OnInit } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-root', | ||
templateUrl: './app.component.html', | ||
styleUrls: ['./app.component.css'] | ||
}) | ||
export class AppComponent { | ||
title = 'Hello'; | ||
export class AppComponent implements OnInit { | ||
title = 'Dating App'; | ||
users: any; | ||
|
||
constructor(private http: HttpClient) { } | ||
|
||
ngOnInit(): void { | ||
this.http.get('https://localhost:5001/api/users').subscribe({ | ||
next: response => this.users = response, | ||
error: error => console.log(error), | ||
complete: () => console.log('Resuest has completed') | ||
|
||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
Angular/CSharp_Angular/DatingApp/client/ssl/localhost-key.pem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
-----BEGIN PRIVATE KEY----- | ||
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDBy/AW+pQVbBgl | ||
l6oF6XSIYF4MCfHmVMsv07rsUogIJ0a5T+z4IGgIezwOEp81OV04hS+TsCWJNMwa | ||
2RJTBabatKlFzFNLy/xYxnjw2rTB97ZNleuhtc2zB6N5fSpUGX2/Cp3YHWyiZuzb | ||
A0yYpOEjDuY39GxTC0YjNCKP9AikLw3sNF94gg5DuI2+hqk/sdLqSIg7XRvmNfgZ | ||
GKXrgS7sbMsFDoD95FkTBxXRyFwEwQnUkqiyGoSLocYx9UP+SHiBbA15eNZdftrT | ||
LRDFp7tuK2qlSXiRtskSPi+Z7KOYXT6L4AZt88cXE8mnrY35Nr4Hf3nTlv+SegZ6 | ||
Lpt28CwTAgMBAAECggEAUDjUnR6DWE7TvBQJLMNUGvQRWlhvi1JEffreoN8VMpLX | ||
ovRj+t6nUgN5e7XXs9eYMEJpzHAZSa/SYbbD8Bwh0t0ASUVoobLCNhmKjOFr+/NH | ||
wtwxm1I/4UFjOXJHqGKY/BEv//tGMf/7QjoeZf2yuKl9QWJryQCcuwvk1sRFI3ki | ||
Ouls5jgzTiOkctp4ycwfxapDbsw8GVmTPKBT6EozlWLxkGooA8ER9pgr2HAMh2fr | ||
RcDYc4HcwjWV4WTgmtRCUMQNXn+Ei4L6r9ChQ9V33xdc/AzLPXCtmrCYEn8l3HHy | ||
NmP3+r4S3h6k4avFw8qofTLmUo6kI53nu0uheTBS+QKBgQDRGfL+P9eR824MyHjg | ||
tuuQIXY7FgGnVTb6cNZXotPGKEk84noH7meYgiKCWuFvzHmLIXTHBdLaIhCXauyG | ||
PxNQK+Q9AQ92iIj5okBJaX+tgE5RJ+srME+bX3EQsYC+/es+QBNcKm3r3wTTXgUd | ||
R5iiyDhZak8G3mWDSh++uHpMpwKBgQDtQzsujR7qlYuUvp2imPCYu6+JZ/s5VB/8 | ||
AQWYrx4s5WgaBrnzQNRVhc3Ica9JOuhl4CfQ7fHi5eEDh9mukQb3DC2NznQo5JUK | ||
nmv/3sSlDqS8OdWMGhyhbEWRs2fcOkV5WjncDYvS5O2roiff5+a1GXs9KN5fJHxu | ||
pI5vYyV2tQKBgDoVqD9iQqKjaXWZlqJtjaAa+3nMUidGb6BACfqMG6HW/QkxrE5Z | ||
tmNR+v4U+ryQo063u3Wxs3GutscpB4z/JoFFwAAGNGJr6QjXPl5mNPZgRuEaYqQ7 | ||
plF1wLWvaSEk7dz79aTLkH9OE0wXuPn6Mnc9gRGti0hQLQi8ZXcYTbjPAoGBAKhn | ||
oPkgt4IAFWvFhHPlpFh0V1rrUDjXyj//pa5DFeL+Dc7zWUcci9oMOAz/DFCpHE07 | ||
NmeojJjlW7o60bqDO/NcVHUjxfVEkblQyw15XBBf/XOQhU+FNS8qf5K0SZLaVXeW | ||
IB1eDBHr5fp+BVl665k9dejqOjRD3IJYELVlJTFFAoGBAJ6cfYKN3J77h59e3vwM | ||
urPnIVUHJSaqsbFQ+hK6QjxWaSWJXZULzDrI7USda/ktrSy+VkVWl5vhBXpmKCZv | ||
k+KOPM/cHw0m13skxUa47L41pobo1KRLiAV8mjro0TYf/SDGyzbMgB3Xsac0JkHe | ||
/BIb806nvIQ34Pl6iWcNYKX2 | ||
-----END PRIVATE KEY----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
-----BEGIN CERTIFICATE----- | ||
MIIEVjCCAr6gAwIBAgIRANE/xeWxImrSkYL2CN+TLfcwDQYJKoZIhvcNAQELBQAw | ||
gY8xHjAcBgNVBAoTFW1rY2VydCBkZXZlbG9wbWVudCBDQTEyMDAGA1UECwwpTU9I | ||
QU1NRURcbWRoYXlAbW9oYW1tZWQgKE1vaGFtbWVkIEhheWF0aCkxOTA3BgNVBAMM | ||
MG1rY2VydCBNT0hBTU1FRFxtZGhheUBtb2hhbW1lZCAoTW9oYW1tZWQgSGF5YXRo | ||
KTAeFw0yMzA5MDkxODMwMjRaFw0yNTEyMDkxODMwMjRaMF0xJzAlBgNVBAoTHm1r | ||
Y2VydCBkZXZlbG9wbWVudCBjZXJ0aWZpY2F0ZTEyMDAGA1UECwwpTU9IQU1NRURc | ||
bWRoYXlAbW9oYW1tZWQgKE1vaGFtbWVkIEhheWF0aCkwggEiMA0GCSqGSIb3DQEB | ||
AQUAA4IBDwAwggEKAoIBAQDBy/AW+pQVbBgll6oF6XSIYF4MCfHmVMsv07rsUogI | ||
J0a5T+z4IGgIezwOEp81OV04hS+TsCWJNMwa2RJTBabatKlFzFNLy/xYxnjw2rTB | ||
97ZNleuhtc2zB6N5fSpUGX2/Cp3YHWyiZuzbA0yYpOEjDuY39GxTC0YjNCKP9Aik | ||
Lw3sNF94gg5DuI2+hqk/sdLqSIg7XRvmNfgZGKXrgS7sbMsFDoD95FkTBxXRyFwE | ||
wQnUkqiyGoSLocYx9UP+SHiBbA15eNZdftrTLRDFp7tuK2qlSXiRtskSPi+Z7KOY | ||
XT6L4AZt88cXE8mnrY35Nr4Hf3nTlv+SegZ6Lpt28CwTAgMBAAGjXjBcMA4GA1Ud | ||
DwEB/wQEAwIFoDATBgNVHSUEDDAKBggrBgEFBQcDATAfBgNVHSMEGDAWgBR3vrck | ||
j5l5s0fhaECAHId9KWlqTzAUBgNVHREEDTALgglsb2NhbGhvc3QwDQYJKoZIhvcN | ||
AQELBQADggGBAAPddHRXlu/VbYsQXxeHyacAPbpByLPD9H/XgLXdnaCiIIxdUXmj | ||
c9iFiHHHvHQ0uQQkJpGH6W/wjeXViu4otjhzoKj1Xp2wsLvoudd/o8uJ6xKLu/fw | ||
Je0SEFtyKaY7HsyFUzpUKdev2/opMx2teIwxMUBy+iPVKyZOlYwKWhUa/Phj+3y0 | ||
4kX0YyzMynvuqc8iDauX/BzkkmhVUZESa6idxnW/G1zTYZyBpWLTADdDd70FI4Sa | ||
TnO4qBBz+XBUYoomVJvsaqhkHelNP8LxD43GjnfQtMIRWGI6FudFtDawNKp1NOso | ||
lzVfwqecmEsgr7FoK6uBMkwgH1JlNoWglZUdv23HZhq1MFI6UXGd9xJxrTSLINrE | ||
p7z1pxAtT86G0Y0M1WsvDzUJVCDhYMnVm3uHMpYfTVQbvX1Wlt+6IqcQl6a8R851 | ||
L3O3hgl/Y/L88GebO1CBte7E74+WDaeCQUUIrdjFgHSAqGHXpgcl3WB8He9i05xL | ||
q+vM/Qg2///Pyg== | ||
-----END CERTIFICATE----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters