Compare commits

...

9 Commits

Author SHA1 Message Date
Jade Ellis
9e718e1d53 chore: Test 2025-04-16 15:45:19 +01:00
Jade Ellis
1985019c99 chore: Test variables 2025-04-16 15:39:44 +01:00
Jade Ellis
5a9cc1cd5d Test if condition 2025-04-16 15:18:45 +01:00
Jade Ellis
2ce42b1ef5 chore: if block 2025-04-16 15:07:16 +01:00
Jade Ellis
ac912276a6 chore: Set env variable 2025-04-16 15:05:05 +01:00
Jade Ellis
425a6c0b1a chore: Test action 2025-04-16 15:00:59 +01:00
Jade Ellis
f76f669d16 chore: Remove the default sentry endpoint 2025-04-15 22:35:54 +00:00
Jade Ellis
dad407fb22 chore: Add words to cspell dictionary 2025-04-15 22:35:39 +00:00
Jade Ellis
17a04940fc chore: Update Olivia Lee in mailmap 2025-04-15 21:58:39 +01:00
5 changed files with 27 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
name: Test
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo "forgejo.ref = ${{ forgejo.ref }}"

View File

@@ -8,6 +8,7 @@ Jonathan de Jong <jonathan@automatia.nl> <jonathandejong02@gmail.com>
June Clementine Strawberry <june@3.dog> <june@girlboss.ceo>
June Clementine Strawberry <june@3.dog> <strawberry@pupbrain.dev>
June Clementine Strawberry <june@3.dog> <strawberry@puppygock.gay>
Olivia Lee <olivia@computer.surgery> <benjamin@computer.surgery>
Rudi Floren <rudi.floren@gmail.com> <rudi.floren@googlemail.com>
Tamara Schmitz <tamara.zoe.schmitz@posteo.de> <15906939+tamara-schmitz@users.noreply.github.com>
Timo Kösters <timo@koesters.xyz>

11
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"cSpell.words": [
"Forgejo",
"appservice",
"appservices",
"conduwuit",
"continuwuity",
"homeserver",
"homeservers"
]
}

View File

@@ -1428,7 +1428,7 @@
# Sentry reporting URL, if a custom one is desired.
#
#sentry_endpoint = "https://fe2eb4536aa04949e28eff3128d64757@o4506996327251968.ingest.us.sentry.io/4506996334657536"
#sentry_endpoint = ""
# Report your conduwuit server_name in Sentry.io crash reports and
# metrics.

View File

@@ -1636,7 +1636,7 @@ pub struct Config {
/// Sentry reporting URL, if a custom one is desired.
///
/// display: sensitive
/// default: "https://fe2eb4536aa04949e28eff3128d64757@o4506996327251968.ingest.us.sentry.io/4506996334657536"
/// default: ""
#[serde(default = "default_sentry_endpoint")]
pub sentry_endpoint: Option<Url>,
@@ -2207,9 +2207,7 @@ fn default_url_preview_max_spider_size() -> usize {
fn default_new_user_displayname_suffix() -> String { "🏳️‍⚧️".to_owned() }
fn default_sentry_endpoint() -> Option<Url> {
Url::parse("https://fe2eb4536aa04949e28eff3128d64757@o4506996327251968.ingest.us.sentry.io/4506996334657536").ok()
}
fn default_sentry_endpoint() -> Option<Url> { None }
fn default_sentry_traces_sample_rate() -> f32 { 0.15 }