wbintegrator_office365 2.2.1__py2.py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- wbintegrator_office365/__init__.py +1 -0
- wbintegrator_office365/admin.py +209 -0
- wbintegrator_office365/apps.py +5 -0
- wbintegrator_office365/configurations/__init__.py +0 -0
- wbintegrator_office365/configurations/configurations/__init__.py +23 -0
- wbintegrator_office365/dynamic_preferences_registry.py +15 -0
- wbintegrator_office365/factories.py +102 -0
- wbintegrator_office365/filters.py +237 -0
- wbintegrator_office365/importer/__init__.py +3 -0
- wbintegrator_office365/importer/api.py +403 -0
- wbintegrator_office365/importer/disable_signals.py +43 -0
- wbintegrator_office365/importer/parser.py +135 -0
- wbintegrator_office365/kpi_handlers/__init__.py +1 -0
- wbintegrator_office365/kpi_handlers/calls.py +114 -0
- wbintegrator_office365/migrations/0001_initial_squashed_squashed_0003_alter_calendar_owner_alter_calendarevent_organizer_and_more.py +677 -0
- wbintegrator_office365/migrations/0002_remove_calendar_owner_remove_calendarevent_activity_and_more.py +85 -0
- wbintegrator_office365/migrations/0003_alter_event_options.py +20 -0
- wbintegrator_office365/migrations/__init__.py +0 -0
- wbintegrator_office365/models/__init__.py +3 -0
- wbintegrator_office365/models/event.py +623 -0
- wbintegrator_office365/models/subscription.py +144 -0
- wbintegrator_office365/models/tenant.py +62 -0
- wbintegrator_office365/serializers.py +266 -0
- wbintegrator_office365/tasks.py +108 -0
- wbintegrator_office365/tests/__init__.py +0 -0
- wbintegrator_office365/tests/conftest.py +28 -0
- wbintegrator_office365/tests/test_admin.py +86 -0
- wbintegrator_office365/tests/test_models.py +65 -0
- wbintegrator_office365/tests/test_tasks.py +318 -0
- wbintegrator_office365/tests/test_views.py +128 -0
- wbintegrator_office365/tests/tests.py +12 -0
- wbintegrator_office365/urls.py +46 -0
- wbintegrator_office365/viewsets/__init__.py +31 -0
- wbintegrator_office365/viewsets/display.py +306 -0
- wbintegrator_office365/viewsets/endpoints.py +52 -0
- wbintegrator_office365/viewsets/menu.py +65 -0
- wbintegrator_office365/viewsets/titles.py +49 -0
- wbintegrator_office365/viewsets/viewsets.py +745 -0
- wbintegrator_office365-2.2.1.dist-info/METADATA +10 -0
- wbintegrator_office365-2.2.1.dist-info/RECORD +41 -0
- wbintegrator_office365-2.2.1.dist-info/WHEEL +5 -0
@@ -0,0 +1,85 @@
|
|
1
|
+
# Generated by Django 4.1.7 on 2023-04-21 10:50
|
2
|
+
|
3
|
+
from django.db import migrations
|
4
|
+
|
5
|
+
|
6
|
+
class Migration(migrations.Migration):
|
7
|
+
dependencies = [
|
8
|
+
(
|
9
|
+
"wbintegrator_office365",
|
10
|
+
"0001_initial_squashed_squashed_0003_alter_calendar_owner_alter_calendarevent_organizer_and_more",
|
11
|
+
),
|
12
|
+
]
|
13
|
+
|
14
|
+
operations = [
|
15
|
+
migrations.RemoveField(
|
16
|
+
model_name="calendar",
|
17
|
+
name="owner",
|
18
|
+
),
|
19
|
+
migrations.RemoveField(
|
20
|
+
model_name="calendarevent",
|
21
|
+
name="activity",
|
22
|
+
),
|
23
|
+
migrations.RemoveField(
|
24
|
+
model_name="calendarevent",
|
25
|
+
name="calendar",
|
26
|
+
),
|
27
|
+
migrations.RemoveField(
|
28
|
+
model_name="calendarevent",
|
29
|
+
name="event",
|
30
|
+
),
|
31
|
+
migrations.RemoveField(
|
32
|
+
model_name="calendarevent",
|
33
|
+
name="organizer",
|
34
|
+
),
|
35
|
+
migrations.RemoveField(
|
36
|
+
model_name="calendarevent",
|
37
|
+
name="participants",
|
38
|
+
),
|
39
|
+
migrations.RemoveField(
|
40
|
+
model_name="calendarevent",
|
41
|
+
name="recurrence",
|
42
|
+
),
|
43
|
+
migrations.RemoveField(
|
44
|
+
model_name="calendareventinstance",
|
45
|
+
name="activity",
|
46
|
+
),
|
47
|
+
migrations.RemoveField(
|
48
|
+
model_name="calendareventinstance",
|
49
|
+
name="calendar_event",
|
50
|
+
),
|
51
|
+
migrations.RemoveField(
|
52
|
+
model_name="calendareventinstance",
|
53
|
+
name="organizer",
|
54
|
+
),
|
55
|
+
migrations.RemoveField(
|
56
|
+
model_name="calendareventinstance",
|
57
|
+
name="participants",
|
58
|
+
),
|
59
|
+
migrations.RemoveField(
|
60
|
+
model_name="location",
|
61
|
+
name="address",
|
62
|
+
),
|
63
|
+
migrations.RemoveField(
|
64
|
+
model_name="tenantuser",
|
65
|
+
name="enable_synchronization_activity",
|
66
|
+
),
|
67
|
+
migrations.DeleteModel(
|
68
|
+
name="Address",
|
69
|
+
),
|
70
|
+
migrations.DeleteModel(
|
71
|
+
name="Calendar",
|
72
|
+
),
|
73
|
+
migrations.DeleteModel(
|
74
|
+
name="CalendarEvent",
|
75
|
+
),
|
76
|
+
migrations.DeleteModel(
|
77
|
+
name="CalendarEventInstance",
|
78
|
+
),
|
79
|
+
migrations.DeleteModel(
|
80
|
+
name="Location",
|
81
|
+
),
|
82
|
+
migrations.DeleteModel(
|
83
|
+
name="RecurrencePattern",
|
84
|
+
),
|
85
|
+
]
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# Generated by Django 4.2.9 on 2024-02-20 10:08
|
2
|
+
|
3
|
+
from django.db import migrations
|
4
|
+
|
5
|
+
|
6
|
+
class Migration(migrations.Migration):
|
7
|
+
dependencies = [
|
8
|
+
("wbintegrator_office365", "0002_remove_calendar_owner_remove_calendarevent_activity_and_more"),
|
9
|
+
]
|
10
|
+
|
11
|
+
operations = [
|
12
|
+
migrations.AlterModelOptions(
|
13
|
+
name="event",
|
14
|
+
options={
|
15
|
+
"permissions": [("administrate_event", "Can Administrate call and calendar events")],
|
16
|
+
"verbose_name": "Event",
|
17
|
+
"verbose_name_plural": "Events",
|
18
|
+
},
|
19
|
+
),
|
20
|
+
]
|
File without changes
|