Symfony、sfDoctrineGuardUser、sfForkedDoctrineApplyPlugin をインストールしましたが、routing.yml に何を入力すればよいかわかりません。
ドキュメントで
http://www.symfony-project.org/plugins/sfForkedDoctrineApplyPlugin
のみです:
sfApply モジュールのアクションの URL を変更できます。これを行うには、次のオプションを app.yml ファイルに追加するだけです。
all:
#...
sfForkedApply:
#...
routes:
apply: /user/new
reset: /user/password-reset
resetRequest: /user/reset-request
resetCancel: /user/reset-cancel
validate: /user/confirm/:validate
settings: /user/settings
all:
#...
sfForkedApply:
afterLogin: after_login_route
after: after_route
# as a fallback we use old options too:
sfApplyPlugin:
afterLogin: after_login_route
after: after_route
ただし、routing.yml に入力する必要があるものを記述しないでください。エラーがあります。
ルート「after_route」は存在しません。
と
ルート「after_login_route」は存在しません。
私はそこに何を入力しなければなりませんか?