João Conde

Results 6 issues of João Conde

# Issue summary Using the `forceRedirect` prop set to true, my react app redirects to `SHOP_URL/apps/:id/shopify` which does not exist. If I manually suffix this url with `SHOP_URL/admin/apps/:id/shopify` it renders...

## Rationale Add translations to change the default parrot language from English to something else. ## Description - Each message sent to the guild server must be translated. - It...

✨ feature
🎃 hacktoberfest

## Rationale We should have persistent-based settings (for example for the default Parrot language for that guild). These settings need to be persisted and read at the start. ## Description...

✨ feature
🎃 hacktoberfest

## Rationale Documentation helps newcomers grasp how Parrot does what it does (best). It also helps current maintainers because we can't rely on having it all committed in memory. A...

✏️ documentation
🎃 hacktoberfest

The below sample app starts, runs and answers requests, but some timeout (about 30%): ```python #!/usr/bin/python # -*- coding: utf-8 -*- import appier import appier_extras class App(appier.WebApp): def __init__(self, *args,...

bug
p-medium

### Bug Description The following code works for an Sqlite connection: ```rust pub async fn create_todo(pool: &SqlitePool, todo: CreateTodo) -> Result { let todo = sqlx::query_as!( Todo, "INSERT INTO todos...

bug