Il widget Hamburger-categories non si monta?

Yes, as you mentioned earlier unfortunately that guide is outdated. We’re in the midst of getting Ember up to date within Discourse, so hopefully we’ll be able to update our guides soon (or start being able to point to Ember’s documentation more often).

If you’re trying to get siteSettings you can do this

<script type="text/discourse-plugin" version="0.8">

  let siteSettings = api.container.lookup('site-settings:main');
  console.log(siteSettings);
  
  // example setting
  console.log(siteSettings.header_dropdown_category_count)
</script>

3 Mi Piace