- Remove dead CSS color property in .tab-mobile - Fix design token violations (text-red-500, fallback colors) - Add disconnectedCallback to chip-scroll, image-upload, searchable-select - Replace innerHTML with safe DOM APIs in world-map screen reader table - Add credentials: same-origin to WebAuthn fetch calls - Move page-specific scripts (donut-chart, location) out of base.html - Add client-side image resizing (1920px max dimension) - Resize app-icon-512.png from 2048x2048 to 512x512 - Document Datastar unsafe-eval CSP requirement - Add static asset serving tests (16 routes) - Add e2e tests for world-map, donut-chart, chip-scroll presence - Add cache-busting query params to all static asset URLs
23 lines
450 B
Rust
23 lines
450 B
Rust
pub mod auth_api;
|
|
pub mod backup;
|
|
pub mod bags_api;
|
|
pub mod brews_api;
|
|
pub mod cafes_api;
|
|
pub mod checkin_api;
|
|
pub mod cups_api;
|
|
pub mod datastar;
|
|
pub mod extraction_api;
|
|
pub mod form_submissions;
|
|
pub mod gear_api;
|
|
pub mod helpers;
|
|
pub mod images_api;
|
|
pub mod nearby_api;
|
|
pub mod pages;
|
|
pub mod roasters_api;
|
|
pub mod roasts_api;
|
|
pub mod scan_api;
|
|
pub mod static_assets;
|
|
pub mod stats_api;
|
|
pub mod test_macros;
|
|
pub mod timeline;
|
|
pub mod webauthn_api;
|