Revision 222305b7 snf-astakos-app/astakos/im/target/linkedin.py

b/snf-astakos-app/astakos/im/target/linkedin.py
56 56
from astakos.im import auth_providers
57 57
from astakos.im.target import add_pending_auth_provider, get_pending_key, \
58 58
    handle_third_party_signup, handle_third_party_login, init_third_party_session
59
from astakos.im.decorators import cookie_fix
59 60

  
60 61
import astakos.im.messages as astakos_messages
61 62

  
......
74 75

  
75 76
@requires_auth_provider('linkedin')
76 77
@require_http_methods(["GET", "POST"])
78
@cookie_fix
77 79
def login(request):
78 80
    init_third_party_session(request)
79 81
    resp, content = client.request(request_token_url, "GET")
......
97 99

  
98 100
@requires_auth_provider('linkedin', login=True)
99 101
@require_http_methods(["GET", "POST"])
102
@cookie_fix
100 103
def authenticated(
101 104
    request,
102 105
    template='im/third_party_check_local.html',

Also available in: Unified diff