-
Notifications
You must be signed in to change notification settings - Fork 12
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
Feature/907 alway send confirmed property on command #1037
Merged
hocinehacherouf
merged 4 commits into
main
from
feature/907_alway_send_confirmed_property_on_command
Aug 8, 2022
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
0fcad6e
Send command with confirmed property #907
hocinehacherouf 3ca2fde
Remove unused DeviceModelCommandExtensions #907
hocinehacherouf 05b237f
Add LoRaCloudToDeviceMessage contact to send commands #907
hocinehacherouf 3abdd9d
Update unit test LoraDeviceMethodManagerTests #907
hocinehacherouf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
67 changes: 0 additions & 67 deletions
67
src/AzureIoTHub.Portal.Server.Tests.Unit/Extensions/DeviceModelCommandExtensionsTests.cs
This file was deleted.
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
28 changes: 0 additions & 28 deletions
28
src/AzureIoTHub.Portal/Server/Extensions/DeviceModelCommandExtensions.cs
This file was deleted.
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
19 changes: 19 additions & 0 deletions
19
src/AzureIoTHub.Portal/Shared/Models/v1.0/LoRaWAN/LoRaCloudToDeviceMessage.cs
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,19 @@ | ||
// Copyright (c) CGI France. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
namespace AzureIoTHub.Portal.Models.v10.LoRaWAN | ||
{ | ||
using System.Text.Json.Serialization; | ||
|
||
public class LoRaCloudToDeviceMessage | ||
{ | ||
[JsonPropertyName("rawPayload")] | ||
public string RawPayload { get; set; } | ||
|
||
[JsonPropertyName("fport")] | ||
public int Fport { get; set; } | ||
|
||
[JsonPropertyName("confirmed")] | ||
public bool Confirmed { get; set; } | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check warning
Code scanning / CodeQL
Dereferenced variable may be null