You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hey folks,
this is to share and discuss the MVP solution of a problem that has been mentioned by the community frequently:
Users are tired of creating their presentations by arranging objects and text boxes on a canvas. The solution approach to this is converting presentations from tools that enable structuring content in more convenient ways. Massive success has been achieved with Notion and Markdown already. Now trying a new approach as this has been frequently requested: Trello.
Currently launched Wunderpresentation for Trello in beta mode which works as follows
Just the beginning. What do you think?
@danielpichel Wonder you are prepared to share how you did the Authorize Trello button. While I have built custom power up and it has a Authorize capability I am trying to do this outside of the Power Up framework just on a web app to simplify my enrolment process. Presumably there is a some kind of client.JS and some HTML.
@milynnusHappy to help out here. It has been easier than I assumed inittially. This is using the Trello REST API. They have this great documentation here. First step is the authorization of the client and with the token reveived, all other REST requests can be conducted. Does this make sense to you?
@danielpichel now that I revisited my earlier work, I was able to use the client.js to invoke the authorisation and get the token. At this point, I cannot save the token like what I would do with a t.set('member', 'private', 'trello_token', token) since this is all on a webpage and not in Trello unlike when using a Power Up.
@danielpichel I have been doing documentation on Trello boards. I have tried your wunderpresentation and was wondering how can I serve out the pages either via a link or a link to an endpoint that return the pages via a http response? I really do not want to write my own script to convert cards to HTML if I can help it.