with Taiga and Formatting?
Emit new event when an issue is updated in the selected project. See the documentation
Emit new event when an issue status is changed in the selected project. See the documentation
Emit new event when a task is updated in the selected project. See the documentation
Emit new event when a task status is changed in the selected project. See the documentation
Emit new event when a issue is deleted in the selected project. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
taiga: {
type: "app",
app: "taiga",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.taiga.$auth.api_url}/api/v1/projects`,
headers: {
Authorization: `Bearer ${this.taiga.$auth.oauth_access_token}`,
"content-type": `application/json`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})