Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove twitter and update Mail #844

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
run:
working-directory: backend
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install python 3.10
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10.x'
cache: 'pip'
Expand All @@ -36,7 +36,7 @@ jobs:
name: Build backend container
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build and push backend container image
uses: bCyberGmbH/build-container-image-action@main
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: '2' # for comparison

Expand All @@ -93,7 +93,7 @@ jobs:

- name: Install Node.js 14
if: steps.branch_info.outputs.changes != '0'
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14
cache: 'npm'
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: '2' # for comparison

Expand All @@ -166,7 +166,7 @@ jobs:
fi

- name: Install Node.js 14
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14
cache: 'npm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kube.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build and validate kustomizations
uses: ubergesundheit/kube-check-action@main
Expand Down
3 changes: 1 addition & 2 deletions backend/templates/rest_framework/api.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ <h3>Weitere Informationen</h3>
<p>Für Hinweise, Verbesserungsvorschläge oder Fehlerbeschreibungen rund um API
und App sollten am Besten als „Issue“ im <a href="https://github.com/codeformuenster/muenster-jetzt"
target="_blank" rel="noopener noreferrer">codeformuenster/muenster-jetzt</a> Repository auf GitHub angelegt
werden.<br>Alternativ sind wir auch auf <a href="https://twitter.com/codeformuenster" target="_blank"
rel="noopener noreferrer">Twitter</a> oder <a href="mailto:[email protected]?subject=API">per
werden.<br>Alternativ sind wir auch <a href="mailto:[email protected]?subject=API">per
Mail</a> zu erreichen.</p>
<p>Sowohl API als auch die App lassen sich auch auf eigenen Servern hosten.
Hinweise dazu finden sich ebenfalls im Repository <a href="https://github.com/codeformuenster/muenster-jetzt"
Expand Down
7 changes: 2 additions & 5 deletions frontend/src/InfoPage/ApiInfoPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,8 @@ const ApiInfoPage: FC = () => (
<ExternalLink href="https://twitter.com/codeformuenster">
Twitter
</ExternalLink>{" "}
oder{" "}
<a href="mailto:[email protected]?subject=API">
per Mail
</a>{" "}
zu erreichen.
oder <a href="mailto:[email protected]?subject=API">per Mail</a> zu
erreichen.
</p>
<p className={styles.prosaText}>
Sowohl API als auch die App lassen sich auch auf eigenen Servern hosten.{" "}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/InfoPage/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const LandingPage: FC = () => (
Veranstaltungskalender vereinen.
</p>
<a
href="mailto:muenster[email protected]?subject=Hallo"
href="mailto:muenster@codefor.de?subject=Hallo"
className={styles.contactLink}
>
Kontakt aufnehmen
Expand Down
Loading