mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
31 lines
793 B
Text
31 lines
793 B
Text
<!-- TODO, move this into login UI, don't deliver with page -->
|
|
<script>
|
|
$LAB.script("https://login.persona.org/include.js").wait(function(){
|
|
(function() {
|
|
var readyCalled = false;
|
|
navigator.id.watch({
|
|
onlogin: function(assertion) {
|
|
if (readyCalled) {
|
|
|
|
Discourse.ajax('/auth/persona/callback', {
|
|
type: 'POST',
|
|
data: { 'assertion': assertion },
|
|
success: function(data, textStatus, jqXHR) {
|
|
Discourse.authenticationComplete(data);
|
|
},
|
|
dataType: 'json'
|
|
});
|
|
}
|
|
},
|
|
onlogout: function() {
|
|
if (readyCalled) {
|
|
Discourse.logout();
|
|
}
|
|
},
|
|
onready: function() {
|
|
readyCalled = true;
|
|
}
|
|
});
|
|
}());
|
|
});
|
|
</script>
|