ryohakjae114 / miniblog

1 stars 1 forks source link

短文を投稿できるように #6

Closed ryohakjae114 closed 5 months ago

ryohakjae114 commented 5 months ago

private

def post_params params.require(:post).permit(:body) end


* simple_formで作成するボタンのデフォルトの色を青色にする
` config.button_class = 'btn btn-primary' `

* 登録したらメッセージを表示する
    * flash_messageパーシャルをlayoutsに作成する
    * application.html.hamlにflash_message.html.hamlをrenderする
- flash.each do |_message_type, message|
  .alert.alert-success.fade.show.alert-dismissible
    = message
    %button.btn-close{'aria-label' => 'Close', 'data-bs-dismiss' => 'alert', type: 'button'}
```