mirror of
https://codeberg.org/scip/digiproof.git
synced 2025-12-17 12:41:06 +01:00
11 lines
255 B
JavaScript
11 lines
255 B
JavaScript
|
|
App.TestamentController = Ember.ArrayController.extend({
|
|
needs: "self",
|
|
//self: Ember.computed.alias("controllers.self"),
|
|
successors: App.Successor.find(),
|
|
self: App.Self.find(0),
|
|
now: new Date(),
|
|
notempty: CheckForEmptyDB()
|
|
});
|
|
|