mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-02 04:00:36 +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();
|
||
|
|
|
||
|
|
}
|
||
|
|
]);
|