mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-24 12:30:58 +00:00
10 lines
167 B
JavaScript
10 lines
167 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
habitrpg.controller('NotificationCtrl',
|
||
|
|
['$scope', 'Notification',
|
||
|
|
function ($scope, Notification) {
|
||
|
|
$scope.data = Notification.get();
|
||
|
|
|
||
|
|
}
|
||
|
|
]);
|