Ver código fonte

bugfix attendee waiting list

master
Daniel 3 anos atrás
pai
commit
9f1a5acc7d
3 arquivos alterados com 4 adições e 5 exclusões
  1. +2
    -1
      README.md
  2. +1
    -1
      pw_gen.php
  3. +1
    -3
      src/client/app/js/app/model/Appointment.js

+ 2
- 1
README.md Ver arquivo

@@ -11,4 +11,5 @@
- SELECT * FROM profile WHERE JSON_CONTAINS( `teams_js`, '{"team_id":"75"}' );
- dog@probuddy.xy
- 1337hamburg@gmail.com
- d.knudsen@spawntree.de
- d.knudsen@spawntree.de
- UPDATE `account` SET `pass`='aa47377bfef0917b6ff2e73ece5a6952d7763664' WHERE 1

+ 1
- 1
pw_gen.php Ver arquivo

@@ -1,3 +1,3 @@
<?php

echo md5( 'test' . 'das214!!!ede7105bdaee5fa873ec500' );
echo sha1( 'test' . 'das214!!!ede7105bdaee5fa873ec500' );

+ 1
- 3
src/client/app/js/app/model/Appointment.js Ver arquivo

@@ -581,15 +581,13 @@ app.model.Appointment = function( appData, attendees, attendeeProfiles )
}
attendees.sort( compareLastUpdateDt );
for ( var ai = 0; ai < attendees.length; ai++ )
{
if ( "waiting" === attendees[ ai ].status )
{
waitingList.push( this.getAttendeeByProfileId( attendees[ ai ].profile_id ));
waitingList.push( attendees[ ai ] );
}
}
return waitingList;
};


Carregando…
Cancelar
Salvar