Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
greg
Manage
Activity
Members
Labels
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
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
it-bott-integrasjoner
greg
Merge requests
!227
Notify sponsors about ending roles
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Notify sponsors about ending roles
GREG-162-notify-role-ending
into
master
Overview
0
Commits
1
Pipelines
4
Changes
8
Merged
Andreas Ellewsen
requested to merge
GREG-162-notify-role-ending
into
master
3 years ago
Overview
0
Commits
1
Pipelines
4
Changes
8
Expand
The setup has five parts:
a new email template type
a new django-q task for notifying
a management command for scheduling the task periodically
a new settings variable NOTIFIER_LIMIT for controlling the number of days into the future the notifier script should use for end date of roles.
a new settings variable NOTIFIER_SCHEDULE_TYPE for controlling how often the notifier task should be scheduled when using the management command.
Resolves: GREG-162
0
0
Merge request reports
Compare
version 1
version 3
75d7c2e1
3 years ago
version 2
17cbacd5
3 years ago
version 1
096208fa
3 years ago
master (base)
and
version 2
latest version
17cbacd5
1 commit,
3 years ago
version 3
75d7c2e1
2 commits,
3 years ago
version 2
17cbacd5
1 commit,
3 years ago
version 1
096208fa
1 commit,
3 years ago
Show latest version
8 files
+
80
−
36
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
frontend/src/routes/components/logos/index.tsx
+
14
−
13
Options
@@ -30,7 +30,18 @@ function getHeaderLogo() {
/>
)
case
'
uib
'
:
return
<></>
if
(
i18n
.
language
===
'
en
'
)
{
return
(
<
UiBLogoEn
style
=
{
{
minHeight
:
'
7rem
'
,
minWidth
:
'
10rem
'
,
maxWidth
:
'
30rem
'
}
}
/>
)
}
return
(
<
UiBLogoNo
style
=
{
{
minHeight
:
'
7rem
'
,
minWidth
:
'
10rem
'
,
maxWidth
:
'
30rem
'
}
}
/>
)
default
:
return
<></>
}
@@ -54,18 +65,8 @@ function getFooterLogo() {
/>
)
case
'
uib
'
:
if
(
i18n
.
language
===
'
en
'
)
{
return
(
<
UiBLogoEn
style
=
{
{
minHeight
:
'
7rem
'
,
minWidth
:
'
10rem
'
,
maxWidth
:
'
30rem
'
}
}
/>
)
}
return
(
<
UiBLogoNo
style
=
{
{
minHeight
:
'
7rem
'
,
minWidth
:
'
10rem
'
,
maxWidth
:
'
30rem
'
}
}
/>
)
// No footer logo defined for UiB
return
<></>
default
:
return
<></>
}
Loading