triceratops-show / www.triceratops.show

website for Tricerátops Show, brazilian alternative music podcast
https://www.triceratops.show
MIT License
3 stars 0 forks source link

calculate file size automatically #84

Open eh-am opened 1 year ago

eh-am commented 1 year ago

we can look at the content-length header

< content-length: 147706662

and check for it in a preSave event

CMS.registerEventListener({
  name: 'preSave',
  handler: ({ entry }) => {
    return entry.get('data').set('title', 'new title');
  },
});