Skip to content

Commit 19c572e

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents e124f73 + 17b7f7b commit 19c572e

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

MyApp/_pages/auth/api-key-authprovider.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,6 @@ public class ConfigureAuth : IHostingStartup
348348
.Where(x => userWithKeysIds.Count == 0 || !userWithKeysIds.Contains(x.Id))
349349
.Select(x => x.Id));
350350

351-
var authRepo = (IManageApiKeys)appHost.TryResolve<IAuthRepository>();
352351
foreach (var userId in userIdsMissingKeys)
353352
{
354353
var apiKeys = authProvider.GenerateNewApiKeys(userId);

MyApp/_pages/metadata-page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You can also optionally add custom annotations and documentation on services whi
2525
[Api("Service Description")]
2626
[Route("/swagger/{Name}", "GET", Summary = "GET Summary", Notes="Notes")]
2727
[Route("/swagger/{Name}", "POST", Summary ="POST Summary", Notes="Notes")]
28-
public class MyRequestDto
28+
public class SwaggerTest
2929
{
3030
[ApiMember(Name="Name", Description = "Name Description",
3131
ParameterType = "path", DataType = "string", IsRequired = true)]

MyApp/_pages/ormlite/apis/update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ var updateFields = new Dictionary<string,object> {
137137
[nameof(Person.FirstName)] = "JJ",
138138
};
139139

140-
db.UpdateOnlyFields<Person>(updateFields, p => p.LastName == "Hendrix");
140+
db.UpdateOnly<Person>(updateFields, p => p.LastName == "Hendrix");
141141
```
142142

143143
Using a typed SQL Expression:

0 commit comments

Comments
 (0)