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

Update old forum links to new discuss forum #1828

Merged
merged 1 commit into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Guide/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<a class="nav-link" href="https://www.youtube.com/playlist?list=PLenFm8BWuKlS0IaE31DmKB_PbkMLmwWmG" target="_blank">IHP Casts</a>
<a class="nav-link" href="https://ihp.digitallyinduced.com/api-docs/" target="_blank">API Docs</a>
<a class="nav-link" href="https://digitallyinduced.us10.list-manage.com/subscribe?u=03763c34fa6aaa4c52edfe6ce&id=a09e22a2d3" target="_blank">Newsletter</a>
<a class="nav-link" href="https://forum.ihpapp.com/" target="_blank">IHP Forum</a>
<a class="nav-link" href="https://discuss.ihp.digitallyinduced.com/" target="_blank">IHP Forum</a>
<a class="nav-link" href="https://stackoverflow.com/questions/tagged/ihp" target="_blank">StackOverflow #ihp</a>

<div class="mt-2">
Expand Down
3 changes: 1 addition & 2 deletions IHP/RouterSupport.hs
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ instance {-# OVERLAPPABLE #-} (Show controller, AutoRoute controller) => HasPath
-- | Parses the HTTP Method from the request and returns it.
getMethod :: (?context :: RequestContext) => Parser StdMethod
getMethod =
case parseMethod ?context.request.requestMethod of
case parseMethod ?context.request.requestMethod of
Left error -> fail (ByteString.unpack error)
Right method -> pure method
{-# INLINABLE getMethod #-}
Expand Down Expand Up @@ -968,6 +968,5 @@ routeParam paramName =
--
-- > <a href={ShowProjectAction projectId}>Show project</a>
--
-- See https://forum.ihpapp.com/ShowThread?threadId=ad73d6a5-2481-4e2f-af46-9bf8849f998b
-- See https://github.com/digitallyinduced/ihp/issues/840
instance ((T.TypeError (T.Text "Looks like you forgot to pass a " :<>: (T.ShowType argument) :<>: T.Text " to this " :<>: (T.ShowType controller))), Data argument, Data controller, Data (argument -> controller)) => AutoRoute (argument -> controller) where
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<a href="https://twitter.com/digitallyinduce" target="_blank">
<img src="https://img.shields.io/twitter/follow/digitallyinduce"/>
</a>


<a href="https://console.algora.io/org/digitallyinduced/bounties?status=open" target="_blank">
<img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fconsole.algora.io%2Fapi%2Fshields%2Fdigitallyinduced%2Fbounties%3Fstatus%3Dopen"/>
</a>

<img src="https://api.scarf.sh/v2/packages/digitallyinduced/4b7241ee-9679-43fa-9b27-b5595b775c30/downloads-badge"/>
</p>

Expand Down Expand Up @@ -157,7 +157,7 @@ There's more on the IHP website.

Questions, or need help with haskell type errors? [Join our Slack Community](https://ihp.digitallyinduced.com/Slack)

[Also check out the IHP Forum!](https://forum.ihpapp.com/)
[Also check out the IHP Forum!](https://discuss.ihp.digitallyinduced.com/)

## Contributing

Expand Down
Loading