Skip to content

Commit

Permalink
Merge pull request #1551 from xmera-circle/bugfix/token-action-name-f…
Browse files Browse the repository at this point in the history
…or-webdav-digest-stil-uses-kebab-case

Changes token action name for WebDAV digest
  • Loading branch information
picman authored Oct 3, 2024
2 parents 461c85f + 7a61872 commit 98df43e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/hooks/redmine_dmsf/_view_my_account.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<% if Setting.plugin_redmine_dmsf['dmsf_webdav_authentication'] == 'Digest' %>
<p>
<label for='webdav_digest_reset'><%= l(:label_dmsf_webdav_digest) %></label>
<% token = Token.find_by(user_id: @user.id, action: 'dmsf-webdav-digest') %>
<% token = Token.find_by(user_id: @user.id, action: 'dmsf_webdav_digest') %>
<% if token %>
<%= l(:label_dmsf_webdav_digest_created_on, distance_of_time_in_words(Time.now, token.created_on)) %>
<% else %>
Expand Down

0 comments on commit 98df43e

Please sign in to comment.