pull/36085/head
Trey Moen 3 days ago
parent ca7037188e
commit 8ced742a6f
  1. 12
      system/athena/athenad.py

@ -560,6 +560,12 @@ def getNetworks():
return HARDWARE.get_networks()
@dispatcher.add_method
def bootstrapSim(acknowledged: bool):
assert acknowledged, 'you must acknowledge the operation to proceed'
HARDWARE.get_sim_lpa().bootstrap()
@dispatcher.add_method
def describeSim():
lpa = HARDWARE.get_sim_lpa()
@ -571,12 +577,6 @@ def describeSim():
}
@dispatcher.add_method
def bootstrapSim(acknowledged: bool):
assert acknowledged, 'you must acknowledge the operation to proceed'
HARDWARE.get_sim_lpa().bootstrap()
@dispatcher.add_method
def downloadSimProfile(lpa_activation_code: str, profile_name: str):
lpa = HARDWARE.get_sim_lpa()

Loading…
Cancel
Save