Skip to content

Commit

Permalink
Merge branch 'develop' into 'main'
Browse files Browse the repository at this point in the history
chore: Update id of device

See merge request locker/api-core!423
  • Loading branch information
phuongntt-cystack committed Apr 2, 2024
2 parents 393f74f + 666169b commit 17a989c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions locker_server/api/sub/resources/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,31 +89,31 @@ def list_individual_plans(self, request, *args, **kwargs):
def list_device(self, request, *args, **kwargs):
devices = [
{
"id": "web_app",
"id": "web",
"name": "Web app"
},
{
"id": "mobile_ios",
"id": "ios",
"name": "Mobile IOS"
},
{
"id": "mobile_android",
"id": "android",
"name": "Mobile Android"
},
{
"id": "macos",
"id": "desktop_mac",
"name": "MacOS"
},
{
"id": "windows",
"id": "desktop_windows",
"name": "Windows"
},
{
"id": "linux",
"id": "desktop_linux",
"name": "Linux"
},
{
"id": "extension",
"id": "browser",
"name": "Extension"
}
]
Expand Down

0 comments on commit 17a989c

Please sign in to comment.