phoenix-framework
Here are 728 public repositories matching this topic...
-
Updated
Nov 9, 2018 - JavaScript
-
Updated
Mar 19, 2021 - Elixir
Feature Request
If you don't set your environment's URL options, generated URLs will contain example.com which is only handy if you're working on the new example.com.
Is your feature request related to a problem?
This comes up frequently on Discord, even though it is documented: https://docs
-
Updated
Mar 17, 2021 - Elixir
-
Updated
Jan 4, 2021 - Elixir
-
Updated
Feb 3, 2020 - Elixir
-
Updated
Mar 16, 2021 - Elixir
-
Updated
Dec 20, 2019
-
Updated
Oct 18, 2020 - Elixir
-
Updated
Mar 16, 2021 - Elixir
-
Updated
Oct 1, 2020 - Elixir
-
Updated
Feb 16, 2021 - Elixir
-
Updated
Mar 17, 2021 - Elixir
Add comment tag
What is the current behaviour?
Uncommented Ruby code doesn't get displayed to the client, like so:
paragraph text: 'I will be rendered'
# paragraph text: 'I will not be rendered'
I think this is well, but sometimes we might want to deliver HTML comments. Therefore, I propose a comment static core component, based on [the W3 reference](https://www.w3schools.com/tags/tag_c
-
Updated
Dec 17, 2019 - Elixir
-
Updated
Nov 11, 2020 - Elixir
-
Updated
Feb 12, 2021 - Elixir
-
Updated
Feb 8, 2021 - Elixir
-
Updated
Feb 16, 2018 - Elixir
-
Updated
Aug 25, 2020 - GDScript
-
Updated
May 29, 2017 - Elixir
-
Updated
Sep 24, 2016 - Elixir
-
Updated
Mar 19, 2021 - Elixir
-
Updated
Mar 9, 2021 - Elixir
-
Updated
Mar 8, 2021 - Dockerfile
-
Updated
Feb 11, 2021 - JavaScript
-
Updated
Jan 17, 2021 - Shell
-
Updated
Mar 9, 2021 - Elixir
The link in Step 1 to the troubleshooting section for the server hanging is broken.
It needs to be amended from try [this](###-problems-with-dependencies) to try [updating your deps as explained in our troubleshooting section](#problems-getting-the-initial-server-running)
Improve this page
Add a description, image, and links to the phoenix-framework topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the phoenix-framework topic, visit your repo's landing page and select "manage topics."
Problem
Right now any user with a valid auth token can retrieve any
tagresource as long as they know the ID of the resource. We should return a 404 (Not found) error if someone tries to retrieve/update/delete a resource that does not have a matchingaccount_idSolution
In the
show,update, anddeletemethods of the tag controller, let's add anauthorizeplug (middleware)