Compare commits
No commits in common. "c3695de5ca74cf0cf7926d3927a9cf66c111bbc7" and "47e106171efeb29bf9f443e666976dafd2675b09" have entirely different histories.
c3695de5ca
...
47e106171e
3 changed files with 3 additions and 11 deletions
|
|
@ -30,7 +30,6 @@ jobs:
|
||||||
NUXT_PUBLIC_COMING_SOON: 'false'
|
NUXT_PUBLIC_COMING_SOON: 'false'
|
||||||
NODE_ENV: development
|
NODE_ENV: development
|
||||||
ALLOW_DEV_TEST_ENDPOINTS: 'true'
|
ALLOW_DEV_TEST_ENDPOINTS: 'true'
|
||||||
BASE_URL: http://localhost:3000
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
|
|
@ -101,7 +100,6 @@ jobs:
|
||||||
NUXT_PUBLIC_COMING_SOON: 'false'
|
NUXT_PUBLIC_COMING_SOON: 'false'
|
||||||
NODE_ENV: development
|
NODE_ENV: development
|
||||||
ALLOW_DEV_TEST_ENDPOINTS: 'true'
|
ALLOW_DEV_TEST_ENDPOINTS: 'true'
|
||||||
BASE_URL: http://localhost:3000
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
|
|
|
||||||
|
|
@ -232,12 +232,8 @@ const isAlmostFull = (event) => {
|
||||||
.event-row:hover {
|
.event-row:hover {
|
||||||
padding-left: 4px;
|
padding-left: 4px;
|
||||||
}
|
}
|
||||||
.event-row.is-cancelled .event-title a {
|
.event-row.is-cancelled {
|
||||||
text-decoration: line-through;
|
opacity: 0.5;
|
||||||
text-decoration-thickness: 1px;
|
|
||||||
}
|
|
||||||
.event-row.is-cancelled .event-tagline {
|
|
||||||
text-decoration: line-through;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.event-date-col {
|
.event-date-col {
|
||||||
|
|
|
||||||
|
|
@ -25,9 +25,7 @@ export default defineEventHandler(async (event) => {
|
||||||
|
|
||||||
if (!slackChannelId) {
|
if (!slackChannelId) {
|
||||||
if (process.env.ALLOW_DEV_TEST_ENDPOINTS === 'true') {
|
if (process.env.ALLOW_DEV_TEST_ENDPOINTS === 'true') {
|
||||||
// Match the Slack channel ID format (^[A-Z0-9]+$) so the value
|
slackChannelId = `dev-stub-${Date.now()}`
|
||||||
// round-trips through boardChannelUpdateSchema on subsequent edits.
|
|
||||||
slackChannelId = `CDEV${Date.now().toString(36).toUpperCase()}`
|
|
||||||
console.log('[slack] DEV MODE — skipping createChannel', { name: body.name, slackChannelId })
|
console.log('[slack] DEV MODE — skipping createChannel', { name: body.name, slackChannelId })
|
||||||
} else {
|
} else {
|
||||||
const slack = getSlackAdminService()
|
const slack = getSlackAdminService()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue