From 5d60b0f23813c239472cd99c2d3d7caf9b51cfe4 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Mon, 13 Aug 2018 01:14:31 +0200 Subject: [PATCH] remove app/views/auth/oauthCallback.volt --- app/views/auth/oauthCallback.volt | 47 ------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 app/views/auth/oauthCallback.volt diff --git a/app/views/auth/oauthCallback.volt b/app/views/auth/oauthCallback.volt deleted file mode 100644 index cb121b0..0000000 --- a/app/views/auth/oauthCallback.volt +++ /dev/null @@ -1,47 +0,0 @@ - -{% if error %} -

Error: {{ error }}

- -{% else %} -
-

Authentication sucessful

-

Authentication is successful and auth response is validated.

- -

Returned auth response:

- - - - - - - - {% for key,auth in auths['auth'] %} - {% if auth is scalar %} - - - - - {% else %} - - - - - {% endif %} - {% endfor %} - -
KeyValue
{{key }} {{auth}}
{{key}}
    - {% for key1,item in auth %} - {% if key1 is sameas('image') %} -
  • {{key1}}:
  • - {% elseif key1 == 'urls' %} -
  • {{key1}}: {{item['google']}}
  • - {% else %} -
  • {{key1}}: {{item}}
  • - {% endif %} - {% endfor %} -
-

Raw response

- {{"
"}}
-        
-    
-{% endif %}