File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
services/web/server/src/simcore_service_webserver Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 11from typing import Final
22
3- MSG_AUTH_NOT_AVAILABLE : Final [str ] = "Authentication service is temporary unavailable"
3+ from common_library .user_messages import user_message
4+
5+ MSG_AUTH_NOT_AVAILABLE : Final [str ] = user_message (
6+ "Authentication service is temporary unavailable"
7+ )
48
59PERMISSION_PRODUCT_LOGIN_KEY : Final [str ] = "product.login"
Original file line number Diff line number Diff line change 11from typing import Final
22
3- MSG_PRICE_NOT_DEFINED_ERROR : Final [
4- str
5- ] = "No payments are accepted until this product has a price"
3+ from common_library .user_messages import user_message
64
7- MSG_BILLING_DETAILS_NOT_DEFINED_ERROR : Final [str ] = (
5+ MSG_PRICE_NOT_DEFINED_ERROR : Final [str ] = user_message (
6+ "No payments are accepted until this product has a price"
7+ )
8+
9+ MSG_BILLING_DETAILS_NOT_DEFINED_ERROR : Final [str ] = user_message (
810 "Payments cannot be processed: Required billing details (e.g. country for tax) are missing from your account."
911 "Please contact support to resolve this configuration issue."
1012)
You can’t perform that action at this time.
0 commit comments