mirror of
https://github.com/sim1222/misskey.git
synced 2025-08-04 07:26:29 +09:00
スクラッチパッド、ボタンウィジェット、AiScriptウィジェットでトークンを設定するように
This commit is contained in:
@ -70,7 +70,8 @@ export default defineComponent({
|
||||
async run() {
|
||||
this.logs = [];
|
||||
const aiscript = new AiScript(createAiScriptEnv({
|
||||
storageKey: 'scratchpad'
|
||||
storageKey: 'scratchpad',
|
||||
token: this.$i?.token,
|
||||
}), {
|
||||
in: (q) => {
|
||||
return new Promise(ok => {
|
||||
|
@ -54,7 +54,8 @@ export default defineComponent({
|
||||
async run() {
|
||||
this.logs = [];
|
||||
const aiscript = new AiScript(createAiScriptEnv({
|
||||
storageKey: 'widget'
|
||||
storageKey: 'widget',
|
||||
token: this.$i?.token,
|
||||
}), {
|
||||
in: (q) => {
|
||||
return new Promise(ok => {
|
||||
|
@ -45,7 +45,8 @@ export default defineComponent({
|
||||
methods: {
|
||||
async run() {
|
||||
const aiscript = new AiScript(createAiScriptEnv({
|
||||
storageKey: 'scratchpad'
|
||||
storageKey: 'widget',
|
||||
token: this.$i?.token,
|
||||
}), {
|
||||
in: (q) => {
|
||||
return new Promise(ok => {
|
||||
|
Reference in New Issue
Block a user