Skip to content
Snippets Groups Projects

made UI changes to the app

Merged Krish Moodbidri requested to merge krish94/self-reg-form:feat-ui-changes into master
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
+ 3
2
@@ -51,11 +51,12 @@ def celery_create_account(json, session):
email= json['email']
fullname= json['fullname']
reason= json['reason']
queuename= rc_util.encode_name(username)
print(time.strftime("%m-%d-%Y_%H:%M:%S") + '\tUser ' + username + ' added to queue')
send_msg('creating account', room)
print(username)
rc_util.add_account(username, email, fullname, reason)
rc_util.add_account(username, queuename, email, fullname, reason)
print('sent account info')
print('Waiting for completion...')
rc_util.consume(username, routing_key=f'complete.{username}', callback=gen_f(room))
rc_util.consume(queuename, routing_key=f'complete.{queuename}', callback=gen_f(room))
Loading