Add new licenses for new environments

This commit is contained in:
Ramon Wenger 2022-11-30 15:13:39 +01:00
parent 055ffd2dcb
commit d271c81387
1 changed files with 27 additions and 1 deletions

View File

@ -4,6 +4,8 @@ TEACHER_KEY = 'teacher'
STUDENT_KEY = 'student'
MYSKILLBOX_PLATFORM = 'myskillbox'
MYKV_PLATFORM = 'my-kv'
DHA_PLATFORM = 'dha'
DHF_PLATFORM = 'dhf'
MYSKILLBOX_LICENSES = {
"978-3-0355-1397-4": {
@ -49,7 +51,31 @@ MYSKILLBOX_LICENSES = {
'duration': 400,
'name': 'Student test 1 month',
'platform': MYKV_PLATFORM
}
},
'978-3-0355-2276-1': {
'edition': TEACHER_KEY,
'duration': 30,
'name': 'myDetailhandel DHA - Lehrpersonen (Lizenz)',
'platform': DHA_PLATFORM
},
'978-3-0355-2275-4': {
'edition': STUDENT_KEY,
'duration': 30,
'name': 'myDetailhandel DHA - Lernende (Lizenz)',
'platform': DHA_PLATFORM
},
'978-3-0355-2274-7': {
'edition': TEACHER_KEY,
'duration': 30,
'name': 'myDetailhandel DHF - Lehrpersonen (Lizenz)',
'platform': DHF_PLATFORM
},
'978-3-0355-2273-0': {
'edition': STUDENT_KEY,
'duration': 30,
'name': 'myDetailhandel DHF - Lernende (Lizenz)',
'platform': DHF_PLATFORM
},
}