Revision 8f2eb016 snf-pithos-app/pithos/api/settings.py

b/snf-pithos-app/pithos/api/settings.py
58 58
PITHOS_PREFIX = get_path(pithos_services, 'pithos_object-store.prefix')
59 59
PUBLIC_PREFIX = get_path(pithos_services, 'pithos_public.prefix')
60 60
UI_PREFIX = get_path(pithos_services, 'pithos_ui.prefix')
61
VIEW_PREFIX = join_urls(UI_PREFIX, 'view')
61 62

  
62 63
COOKIE_NAME = getattr(settings, 'PITHOS_ASTAKOS_COOKIE_NAME', '_pithos2_a')
63 64

  
......
182 183
# The backend block hash algorithm
183 184
BACKEND_HASH_ALGORITHM = getattr(
184 185
    settings, 'PITHOS_BACKEND_HASH_ALGORITHM', 'sha256')
186
# Set the credentials (client_id, client_secret) issued to authenticate
187
# the views with astakos during the resource access token generation procedure
188
OA2_CLIENT_CREDENTIALS = getattr(settings, 'PITHOS_OA2_CLIENT_CREDENTIALS',
189
                                 (None, None))

Also available in: Unified diff