Modificar enlace destacado del tema

I haven’t found any way to modify the featured link for a topic

How can I achieve that?

The only way I can see to modify the featured link is to edit it through the rails console.

1 me gusta

You can only delete it, not modify it at this time.

2 Me gusta

Can you give me a hint for the command?

Find the topic_id that you want to change the featured link for - it’s the first number in the URL in your browser’s address bar. SSH into your server and enter the rails console. Then run:

t = Topic.find(your_topic_id)
t.featured_link = 'http://example.com/new/featured/link'
t.save

6 Me gusta

¿Hay alguna forma de hacer esto a través de la API HTTP?

Esperaba que Discourse API Docs me permitiera hacerlo, pero parece que no.

Este tema se cerró automáticamente después de 2375 días. Ya no se permiten nuevas respuestas.