Closed sourei closed 9 years ago
@sourei ありがとうございます〜。ただ、画面遷移とかデザインとかは、こないだの話だと @ixkaito さんが検討することになってるんです。でも、音沙汰ないので、ちょっと待ってくださいね。Facebookのメッセージから聞いてみます。
@sourei さん、@ixkaito さんは明日から開発に入れるそうなんですけど、ページを作り始める前にとりあえず必要な画面とURLをざっと #4 に書いてみてもらえませんか? あと、resources :usersはdeviseと競合しますか?routes確認してみてください。
@satomicchy さん
deviseのroutesなんですけど一部被ってしまっています。(/users(.:format)がちらほら・・・) aliaseで変更は可能なようなので少し調べてみたいと思います。
users GET /users(.:format) users#index
POST /users(.:format) users#create
new_user GET /users/new(.:format) users#new
edit_user GET /users/:id/edit(.:format) users#edit
user GET /users/:id(.:format) users#show
PATCH /users/:id(.:format) users#update
PUT /users/:id(.:format) users#update
DELETE /users/:id(.:format) users#destroy
new_user_session GET /users/sign_in(.:format) devise/sessions#new
user_session POST /users/sign_in(.:format) devise/sessions#create
destroy_user_session DELETE /users/sign_out(.:format) devise/sessions#destroy
user_password POST /users/password(.:format) devise/passwords#create
new_user_password GET /users/password/new(.:format) devise/passwords#new
edit_user_password GET /users/password/edit(.:format) devise/passwords#edit
PATCH /users/password(.:format) devise/passwords#update
PUT /users/password(.:format) devise/passwords#update
cancel_user_registration GET /users/cancel(.:format) devise/registrations#cancel
user_registration POST /users(.:format) devise/registrations#create
new_user_registration GET /users/sign_up(.:format) devise/registrations#new
edit_user_registration GET /users/edit(.:format) devise/registrations#edit
PATCH /users(.:format) devise/registrations#update
PUT /users(.:format) devise/registrations#update
DELETE /users(.:format) devise/registrations#destroy
@satomicchy さん userとのuri?競合を回避するためにdeviseの基本uriをdevise_user/***に変更しました。それと、sign_up, editにnameフィールド追加しました。 @ixkaito さん ログイン関連の画面カスタマイズ用にdeviseのビューを追加しています。
@sourei さん、ありがとうございます。いくつか質問させてください。
@satomicchy さん
コミットの単位気をつけますー。
@sourei さん、 なんだかdevise研究みたいになってる気がしますw。いま、githubのdeviseのREADMEを精読しながら、メソッドの動きをちょこちょこ試しています。明日時間があったら、deviseのコードリーティングとかもできたらいいなと思っています。
長くなったので一旦閉じます。
トップページを価格一覧にしました。とりあえずのところですが・・・ deviseと競合するのでresources :usersをコメントにしてます。