Uh oh!
There was an error while loading. Please reload this page.
feat: [Auto Routing Improved] fallback to default method - #7162
Merged
Conversation
kenjisforce-pushed
the
feat-auto-routes-index-fallback
branch
from
January 22, 2023 05:31
c136237 to
701bdddComparekenjisforce-pushed
the
feat-auto-routes-index-fallback
branch
from
January 27, 2023 00:52
701bddd to
d93340eComparekenjis
commented
Jan 27, 2023
MemberAuthor
Added the docs. |
5 tasks
atiabjobayer
commented
Jul 29, 2023
Can we please get this commit released asap? This is a much needed fix. |
kenjis
commented
Jul 30, 2023
MemberAuthor
We hope to release v4.4.0 soon. |
atiabjobayer
commented
Jul 30, 2023
Thank you for your reply. Any estimation when 4.4 might be released? |
kenjis
commented
Jul 31, 2023
MemberAuthor
Personally, I would like to release it within a week or two if possible, or by the end of August at the latest. However, CodeIgniter has no official release schedule. |
atiabjobayer
commented
Aug 11, 2023
@kenjis Just a bump if you could release this PR fast. :') |
kenjis
commented
Aug 13, 2023
MemberAuthor
I created the issue #7812 to make the current status clear. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
If there is no method in the controller for the request URI, fallback to the default method.
E.g.:
GET /product/15→
Product::get15()Method not found→
Product::getIndex($id = '')Method found and rungetIndex('15')Checklist: