Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix trello api output functions #1673

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions MainModule/Server/Dependencies/TrelloAPI.luau
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- Trello API Documentation: --
-- --
-- App Key Link: /app-key --
-- --
-- Token Link: /1/connect?name=Trello_API_Module&response_type=token&expires=never&scope=read,write&key=YOUR_APP_KEY_HERE --
-- Replace "YOUR_APP_KEY_HERE" with the App Key from /app-key --
-- Trello API Remade by imskyyc for Kronos and Adonis - original by Sceleratis / Davey_Bones for Adonis. --
-- Trello API Documentation: --
-- --
-- App Key Link: /app-key --
-- --
-- Token Link: /1/connect?name=Trello_API_Module&response_type=token&expires=never&scope=read,write&key=YOUR_APP_KEY_HERE --
-- Replace "YOUR_APP_KEY_HERE" with the App Key from /app-key --
-- Trello API Remade by imskyyc for Kronos and Adonis - original by Sceleratis / Davey_Bones for Adonis. --
-- It is requested that existing credits remain here. --
-------------------------------------------------------------------------------------------------------------------------------------------------------------------

local print = function(...) for i,v in {...} do warn(`[Adonis TrelloAPI]: INFO: {v}`) end end
local error = function(...) for i,v in {...} do warn(`[Adonis TrelloAPI]: ERROR: {v}`) end end
local warn = function(...) for i,v in {...} do warn(`[Adonis TrelloAPI]: WARN: {v}`) end end
local print = function(...) warn("[Adonis TrelloAPI]: INFO:", ...) end
local warn = function(...) warn("[Adonis TrelloAPI]: WARN:", ...) end
local error = function(message, level) warn("[Adonis TrelloAPI]: ERROR:", message) return error("[Adonis TrelloAPI]: ERROR:"..message, level == 0 and 0 or 1 + (level or 1)) end

local HttpService = game:GetService("HttpService")
local Weeks = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}
Expand Down
Loading