Skip to content

Commit

Permalink
#39 Add input_boolean support
Browse files Browse the repository at this point in the history
  • Loading branch information
qJake committed Sep 19, 2019
1 parent 92119bd commit 5622d83
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions HADotNet.CommandCenter/Controllers/SwitchTileController.cs
Expand Up @@ -25,6 +25,7 @@ private async Task PopulateSelectLists()
ViewBag.Entities = (await EntityClient.GetEntities("switch"))
.Union(await EntityClient.GetEntities("group"))
.Union(await EntityClient.GetEntities("cover"))
.Union(await EntityClient.GetEntities("input_boolean"))
.OrderBy(e => e)
.Select(e => new SelectListItem(e, e));
}
Expand Down

0 comments on commit 5622d83

Please sign in to comment.