Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Merge requests
!975
Resolve "Add possibility to create Ical feeds for all apps"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add possibility to create Ical feeds for all apps"
658-add-possibility-to-create-ical-feeds-for-all-apps
into
master
Overview
5
Commits
23
Pipelines
18
Changes
19
Merged
Julian
requested to merge
658-add-possibility-to-create-ical-feeds-for-all-apps
into
master
3 years ago
Overview
5
Commits
23
Pipelines
18
Changes
19
Expand
Closes
#658 (closed)
Edited
2 years ago
by
Julian
0
0
Merge request reports
Compare
master
version 15
2dfa0551
2 years ago
version 14
6bd99078
2 years ago
version 13
5e503c75
3 years ago
version 12
b5f68a61
3 years ago
version 11
e52972e5
3 years ago
version 10
4956decd
3 years ago
version 9
7198128f
3 years ago
version 8
b06bc5eb
3 years ago
version 7
db77f23f
3 years ago
version 6
dd495858
3 years ago
version 5
e23ee370
3 years ago
version 4
375758df
3 years ago
version 3
5704e964
3 years ago
version 2
7d38b87a
3 years ago
version 1
9c95d715
3 years ago
master (base)
and
latest version
latest version
5485a524
23 commits,
2 years ago
version 15
2dfa0551
22 commits,
2 years ago
version 14
6bd99078
21 commits,
2 years ago
version 13
5e503c75
20 commits,
3 years ago
version 12
b5f68a61
19 commits,
3 years ago
version 11
e52972e5
18 commits,
3 years ago
version 10
4956decd
18 commits,
3 years ago
version 9
7198128f
16 commits,
3 years ago
version 8
b06bc5eb
15 commits,
3 years ago
version 7
db77f23f
14 commits,
3 years ago
version 6
dd495858
13 commits,
3 years ago
version 5
e23ee370
12 commits,
3 years ago
version 4
375758df
11 commits,
3 years ago
version 3
5704e964
11 commits,
3 years ago
version 2
7d38b87a
10 commits,
3 years ago
version 1
9c95d715
6 commits,
3 years ago
19 files
+
383
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
19
Search (e.g. *.vue) (Ctrl+P)
aleksis/core/migrations/0039_personal_ical_url.py
0 → 100644
+
31
−
0
Options
# Generated by Django 3.2.12 on 2022-02-20 21:04
from
django.db
import
migrations
,
models
import
django.db.models.deletion
import
uuid
from
aleksis.core.feeds
import
PersonalICalFeedBase
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
core
'
,
'
0038_notification_send_at
'
),
]
operations
=
[
migrations
.
CreateModel
(
name
=
'
PersonalICalUrl
'
,
fields
=
[
(
'
id
'
,
models
.
BigAutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'
ID
'
)),
(
'
uuid
'
,
models
.
UUIDField
(
default
=
uuid
.
uuid4
,
editable
=
False
,
unique
=
True
,
verbose_name
=
'
UUID
'
)),
(
'
name
'
,
models
.
CharField
(
max_length
=
255
,
verbose_name
=
'
Name
'
)),
(
'
ical_feed
'
,
models
.
CharField
(
choices
=
PersonalICalFeedBase
.
subclass_choices
,
max_length
=
255
,
verbose_name
=
'
Selected ICal feed
'
)),
(
'
person
'
,
models
.
ForeignKey
(
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'
calendar_urls
'
,
to
=
'
core.person
'
,
verbose_name
=
'
Person
'
)),
],
options
=
{
'
verbose_name
'
:
'
Personal Calendar URL
'
,
'
verbose_name_plural
'
:
'
Personal Calendar URLs
'
,
},
),
]
Loading