diff options
author | maxbr <maxbr@mi.fu-berlin.de> | 2017-01-05 12:38:00 +0100 |
---|---|---|
committer | maxbr <maxbr@mi.fu-berlin.de> | 2017-01-05 12:38:00 +0100 |
commit | 9a7cf0a9a0f22f0ed7de720e69d560d35b8f0998 (patch) | |
tree | 20eda1152c316875894e1d51306ac0726523770b /tools/pharos-dashboard/src/account | |
parent | 85623f2e6a4e4bee61ac5c28ce04bf9532980094 (diff) |
Add booking communication reference implementation
JIRA: PHAROS-265
This adds an implementation of a booking communication agent that
listens for booking notifications from the dashboard and updates the pod
status in the dashboard.
Change-Id: I1ea22390a46182a185df9c5e1771c9312d462092
Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'tools/pharos-dashboard/src/account')
-rw-r--r-- | tools/pharos-dashboard/src/account/migrations/0001_initial.py | 4 | ||||
-rw-r--r-- | tools/pharos-dashboard/src/account/migrations/0002_auto_20161005_1201.py | 25 |
2 files changed, 3 insertions, 26 deletions
diff --git a/tools/pharos-dashboard/src/account/migrations/0001_initial.py b/tools/pharos-dashboard/src/account/migrations/0001_initial.py index 8db05cb4..591f7024 100644 --- a/tools/pharos-dashboard/src/account/migrations/0001_initial.py +++ b/tools/pharos-dashboard/src/account/migrations/0001_initial.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Generated by Django 1.10 on 2016-09-23 11:36 +# Generated by Django 1.10 on 2016-11-03 13:33 from __future__ import unicode_literals import account.models @@ -27,6 +27,8 @@ class Migration(migrations.Migration): ('company', models.CharField(max_length=200)), ('oauth_token', models.CharField(max_length=1024)), ('oauth_secret', models.CharField(max_length=1024)), + ('jira_url', models.CharField(default='', max_length=100)), + ('full_name', models.CharField(default='', max_length=100)), ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), ], options={ diff --git a/tools/pharos-dashboard/src/account/migrations/0002_auto_20161005_1201.py b/tools/pharos-dashboard/src/account/migrations/0002_auto_20161005_1201.py deleted file mode 100644 index 33d2cc54..00000000 --- a/tools/pharos-dashboard/src/account/migrations/0002_auto_20161005_1201.py +++ /dev/null @@ -1,25 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.10 on 2016-10-05 12:01 -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('account', '0001_initial'), - ] - - operations = [ - migrations.AddField( - model_name='userprofile', - name='full_name', - field=models.CharField(default='', max_length=100), - ), - migrations.AddField( - model_name='userprofile', - name='jira_url', - field=models.CharField(default='', max_length=100), - ), - ] |