Problem
Card-view videos currently autoplay muted (src/mixins/post.pug:52 — autoplay="" muted=""). Add a user preference to disable this for users who find it distracting or are on metered connections.
Schema
New column pref_autoplayVideos (boolean, default 1 to preserve current behavior).
Touches
- DB migration in
src/db.js
prefToColumn map in src/routes/index.js
get_user_prefs helper
- Dashboard checkbox in
src/views/dashboard.pug
- Template conditional on the
autoplay attribute at src/mixins/post.pug:52
Out of scope
Detail view at src/mixins/post.pug:84 currently shows controls without autoplay — no change there.
Problem
Card-view videos currently autoplay muted (
src/mixins/post.pug:52—autoplay="" muted=""). Add a user preference to disable this for users who find it distracting or are on metered connections.Schema
New column
pref_autoplayVideos(boolean, default 1 to preserve current behavior).Touches
src/db.jsprefToColumnmap insrc/routes/index.jsget_user_prefshelpersrc/views/dashboard.pugautoplayattribute atsrc/mixins/post.pug:52Out of scope
Detail view at
src/mixins/post.pug:84currently shows controls without autoplay — no change there.