Skip to content
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

Issue #174 activate lora feature with setting #327

Merged
merged 1 commit into from
Feb 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions open-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2455,6 +2455,28 @@ None

<h1 id="azure-iot-hub-portal-api-portal-settings">Portal Settings</h1>

## GET LoRa settings

<a id="opIdGET LoRa settings"></a>

> Code samples

`GET /api/settings/lora`

*Get the a boolean for LoRa feature enable on the portal or not.*

<h3 id="get-lora-settings-responses">Responses</h3>

|Status|Meaning|Description|Schema|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|Returns the LoRa support setting.|None|
|500|[Internal Server Error](https://tools.ietf.org/html/rfc7231#section-6.6.1)|Internal server error.|None|

<aside class="warning">
To perform this operation, you must be authenticated by means of one of the following methods:
None
</aside>

## GET Open ID settings

<a id="opIdGET Open ID settings"></a>
Expand Down
17 changes: 17 additions & 0 deletions swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2082,6 +2082,23 @@
}
}
},
"/api/settings/lora": {
"get": {
"tags": [
"Portal Settings"
],
"summary": "Get the a boolean for LoRa feature enable on the portal or not.",
"operationId": "GET LoRa settings",
"responses": {
"200": {
"description": "Returns the LoRa support setting."
},
"500": {
"description": "Internal server error."
}
}
}
},
"/api/settings/oidc": {
"get": {
"tags": [
Expand Down