Compare commits

..

No commits in common. "c3695de5ca74cf0cf7926d3927a9cf66c111bbc7" and "47e106171efeb29bf9f443e666976dafd2675b09" have entirely different histories.

3 changed files with 3 additions and 11 deletions

View file

@ -30,7 +30,6 @@ jobs:
NUXT_PUBLIC_COMING_SOON: 'false'
NODE_ENV: development
ALLOW_DEV_TEST_ENDPOINTS: 'true'
BASE_URL: http://localhost:3000
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
@ -101,7 +100,6 @@ jobs:
NUXT_PUBLIC_COMING_SOON: 'false'
NODE_ENV: development
ALLOW_DEV_TEST_ENDPOINTS: 'true'
BASE_URL: http://localhost:3000
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4

View file

@ -232,12 +232,8 @@ const isAlmostFull = (event) => {
.event-row:hover {
padding-left: 4px;
}
.event-row.is-cancelled .event-title a {
text-decoration: line-through;
text-decoration-thickness: 1px;
}
.event-row.is-cancelled .event-tagline {
text-decoration: line-through;
.event-row.is-cancelled {
opacity: 0.5;
}
.event-date-col {

View file

@ -25,9 +25,7 @@ export default defineEventHandler(async (event) => {
if (!slackChannelId) {
if (process.env.ALLOW_DEV_TEST_ENDPOINTS === 'true') {
// Match the Slack channel ID format (^[A-Z0-9]+$) so the value
// round-trips through boardChannelUpdateSchema on subsequent edits.
slackChannelId = `CDEV${Date.now().toString(36).toUpperCase()}`
slackChannelId = `dev-stub-${Date.now()}`
console.log('[slack] DEV MODE — skipping createChannel', { name: body.name, slackChannelId })
} else {
const slack = getSlackAdminService()