15 lines
412 B
CoffeeScript
15 lines
412 B
CoffeeScript
UserTimelineDirective = ->
|
|
return {
|
|
templateUrl: "user-timeline/user-timeline/user-timeline.html",
|
|
controller: "UserTimeline",
|
|
controllerAs: "vm",
|
|
scope: {
|
|
projectId: "=projectid",
|
|
user: "=",
|
|
currentUser: "="
|
|
},
|
|
bindToController: true
|
|
}
|
|
|
|
angular.module("taigaProfile").directive("tgUserTimeline", UserTimelineDirective)
|