events initated first endpoint tested
This commit is contained in:
@@ -18,6 +18,8 @@ CrudCollectionLanguageModel = dict(
|
||||
"active": "Aktif",
|
||||
"is_notification_send": "Bildirim Gönderildi",
|
||||
"is_email_send": "E-posta Gönderildi",
|
||||
"expiry_ends": "Bitiş Tarihi",
|
||||
"expiry_starts": "Başlangıç Tarihi",
|
||||
},
|
||||
en={
|
||||
"id": "Identity",
|
||||
@@ -38,5 +40,7 @@ CrudCollectionLanguageModel = dict(
|
||||
"active": "Active",
|
||||
"is_notification_send": "Notification Sent",
|
||||
"is_email_send": "Email Sent",
|
||||
"expiry_ends": "Expiration End",
|
||||
"expiry_starts": "Expiration Start",
|
||||
},
|
||||
)
|
||||
|
||||
28
ApiLayers/LanguageModels/Response/accounts/accounts.py
Normal file
28
ApiLayers/LanguageModels/Response/accounts/accounts.py
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
|
||||
accountResponses = {
|
||||
"ACCOUNTS_LIST": {
|
||||
"tr": {
|
||||
"message": "Hesap Bilgileri gönderilen sorgu ve filtreleme seçeneklerine göre başarılı bir şekilde listelendi.",
|
||||
},
|
||||
"en": {
|
||||
"message": "Account Information listed successfully regarding to the sent query and filtering options.",
|
||||
},
|
||||
},
|
||||
"ACCOUNT_CREATED": {
|
||||
"tr": {
|
||||
"message": "Hesap bilgileri başarılı bir şekilde eklendi.",
|
||||
},
|
||||
"en": {
|
||||
"message": "Account information added successfully.",
|
||||
},
|
||||
},
|
||||
"ACCOUNT_UPDATED": {
|
||||
"tr": {
|
||||
"message": "Hesap bilgileri başarılı bir şekilde güncellendi.",
|
||||
},
|
||||
"en": {
|
||||
"message": "Account information updated successfully.",
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -1,3 +1,5 @@
|
||||
from .authentication.auth import authResponses
|
||||
from .accounts.accounts import accountResponses
|
||||
|
||||
all_response_list = [authResponses]
|
||||
|
||||
all_response_list = [authResponses, accountResponses]
|
||||
|
||||
Reference in New Issue
Block a user