0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Redmine ログイン時の「ログインを維持する」チェックボックスをデフォルトでONにする

Last updated at Posted at 2024-10-08

Redmine ログイン画面の [ログインを維持] のチェックボックスをデフォルトで ON にしておきたい

チェックボックスにチェックしてログインすると設定期間ログイン不要になる(最大 365 まで可能)

ソースコードの修正が必要です

修正するソースコード

場所:D:\Bitnami\redmine-4.2.3-1\apps\redmine\htdocs\app\views\account
ファイル:login.html.erb

修正箇所 22 行目付近

修正前

login.html.erb
<% if Setting.autologin? %>
    <label for="autologin"><%= check_box_tag 'autologin', 1, false, :tabindex => 4 %> <%= l(:label_stay_logged_in) %></label>
  <% end %>

false を true に変えます

修正後

login.html.erb
 <% if Setting.autologin? %>
    <label for="autologin"><%= check_box_tag 'autologin', 1, true, :tabindex => 4 %> <%= l(:label_stay_logged_in) %></label>
  <% end %>

この図のように最初からチェックボックスにチェックが入った状態になります。

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?