File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -360,7 +360,7 @@ module openflow {
360360 } catch ( error ) {
361361 console . log ( error ) ;
362362 }
363-
363+ console . debug ( "signing in with username/password" ) ;
364364 var a : any = await this . WebSocketClient . Send ( msg ) ;
365365 var result : SigninMessage = a ;
366366 if ( result . user == null ) { return ; }
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ module openflow {
136136 } catch ( error ) {
137137 console . log ( error ) ;
138138 }
139- console . debug ( "signing in" ) ;
139+ console . debug ( "signing in with token " ) ;
140140 var msg : Message = new Message ( ) ; msg . command = "signin" ; msg . data = JSON . stringify ( q ) ;
141141 var a : any = await this . Send ( msg ) ;
142142 var result : SigninMessage = a ;
Original file line number Diff line number Diff line change @@ -5,13 +5,15 @@ <h1 translate lib="web">entities</h1>
55 < table id ="table1 " class ="table table-striped " when-scrolled ="ctrl.more() " style ="width: 100%; ">
66 < thead class ="thead-dark ">
77 < tr >
8+ < th ng-click ="ctrl.ToggleOrder('_type') "> < b translate lib ="web "> type</ b > </ th >
89 < th ng-click ="ctrl.ToggleOrder('_createdby') "> < b translate lib ="web "> createdby</ b > </ th >
910 < th ng-click ="ctrl.ToggleOrder('_created') "> < b translate lib ="web "> created</ b > </ th >
1011 < th > </ th >
1112 </ tr >
1213 </ thead >
1314 < tbody >
1415 < tr ng-repeat ="model in ctrl.models ">
16+ < td > {{model._type}}</ td >
1517 < td > {{model._createdby}}</ td >
1618 < td >
1719 < timesince ng-model ="model._created " />
Original file line number Diff line number Diff line change 1- 0.0.129
1+ 0.0.130
You can’t perform that action at this time.
0 commit comments