Mercurial > hg > soundsoftware-site
comparison plugins/redmine_bibliography/app/controllers/authorships_controller.rb @ 1484:51364c0cd58f redmine-2.4-integration
Merge from live branch. Still need to merge manually in files overridden by plugins.
author | Chris Cannam |
---|---|
date | Wed, 15 Jan 2014 09:59:14 +0000 |
parents | 4d5d25039a5f |
children |
comparison
equal
deleted
inserted
replaced
1464:261b3d9a4903 | 1484:51364c0cd58f |
---|---|
1 class AuthorshipsController < ApplicationController | |
2 | |
3 def sort | |
4 @authorships = Authorship.find(params['authorship']) | |
5 | |
6 @authorships.each do |authorship| | |
7 | |
8 # note: auth_order is usually called position (default column name in the acts_as_list plugin ) | |
9 authorship.auth_order = params['authorship'].index(authorship.id.to_s) + 1 | |
10 authorship.save | |
11 end | |
12 | |
13 render :nothing => true, :status => 200 | |
14 end | |
15 end |