2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Redmineで個人設定から姓名/メールアドレスを変更できなくする方法【View customizes Plugin】

Last updated at Posted at 2018-03-02

やりたいこと

ユーザが個人設定から姓名及びメールアドレスを変更禁止にしたい。
勝手にローマ字とかにされると管理上困るため。

動作環境

Redmine3.4.3
View Customize plugin 1.1.4

やり方

Redmineのプラグイン「view customize plugin」を利用します。

下記の設定をview customizeで設定します。

  • Path pattern
/my/account
  • Type
JavaScript
  • Code
$(function(){
$('#user_firstname').prop('readonly',true);
$('#user_lastname').prop('readonly',true);
$('#user_mail').prop('readonly',true);
});

ちなみに$('#xxx').prop('readonly',true);
のxxx部分を対象のhtmlソースからidを拾って入力すれば、その項目も
読み取りのみになります。
Path patternを変更すれば個人設定以外のところにも適用できると思います。

2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?