-
Notifications
You must be signed in to change notification settings - Fork 1k
Task 1924572 Sample 4-1 basher update #602
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
2599ef8
7289a0d
3b794e6
fd8ba1a
55e3a1c
6f2465f
6a8c470
06cce15
56ac49c
a57b73e
cd33fce
a2bd757
dff53f9
148968e
8a9f3bc
516b438
bab24f2
6f8dc6c
f866d5a
727f74f
0242a69
2e3d9e4
6f2ec1d
4180373
e6760af
7df60d9
1b56aa7
5d4d4b6
831f51f
5c5188c
21a6f1c
a5a8507
ed95a14
32b9827
a273a6b
ba2bfb4
40c86aa
ab93e0f
de8a786
49a3a1c
180aad8
3b6d228
949d23b
fa8bbe0
fde05ea
d8a4208
cdb0b62
afbd2e8
afc68bb
4c7ad15
cd752a1
ab5a60c
49abddc
164a302
9fa8f01
5a18734
2f8e0f4
67ee023
957dbf8
f1c4601
68caf90
da47245
a74abf9
dd39fd5
5f0986c
49476ae
0f7e06b
f9599f4
e03d1a7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,8 +94,19 @@ | |
"SampleSubPath": "4-WebApp-Your-API\\4-1-MyOrg", | ||
"ProjectDirectory": "\\TodoListService" | ||
}, | ||
"AppScopes": [ "ToDoList.Read", "ToDoList.Write" ] | ||
|
||
"Scopes": [ "ToDoList.Read", "ToDoList.ReadWrite" ], | ||
"AppRoles": [ | ||
jmprieur marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ | ||
"Types": [ "Application" ], | ||
"Name": "ToDoList.Read.All", | ||
"Description": "Application can only read ToDo list" | ||
aremo-ms marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}, | ||
{ | ||
"Types": [ "Application" ], | ||
"Name": "ToDoList.ReadWrite.All", | ||
"Description": "Application can read and write into ToDo list" | ||
} | ||
] | ||
}, | ||
{ | ||
"Id": "client", | ||
|
@@ -114,6 +125,8 @@ | |
], | ||
"Certificate": "the certificate will be named by application name", | ||
"ManualSteps": [], | ||
"EnableAccessTokenIssuance": "true", | ||
"EnableIdTokenIssuance": "false", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove these #Closed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't see it in my sample.json |
||
"Sample": { | ||
"SampleSubPath": "4-WebApp-Your-API\\4-1-MyOrg", | ||
"ProjectDirectory": "\\Client" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace TodoListService.Models | ||
namespace TodoListClient.Models | ||
{ | ||
public class Todo | ||
aremo-ms marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@model TodoListService.Models.Todo | ||
@model TodoListClient.Models.Todo | ||
@{ | ||
ViewData["Title"] = "Create"; | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@model TodoListService.Models.Todo | ||
@model TodoListClient.Models.Todo | ||
|
||
@{ | ||
ViewData["Title"] = "Delete"; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@model TodoListService.Models.Todo | ||
@model TodoListClient.Models.Todo | ||
|
||
@{ | ||
ViewData["Title"] = "Details"; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@model TodoListService.Models.Todo | ||
@model TodoListClient.Models.Todo | ||
@{ | ||
ViewData["Title"] = "Edit"; | ||
} | ||
|
Uh oh!
There was an error while loading. Please reload this page.