Skip to content
This repository was archived by the owner on Jan 30, 2018. It is now read-only.

Fixes image url and link to project from it for some email notifications. #24

Open
wants to merge 27 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d781ce5
Fixes image url and link to project from it for some email notificati…
Jun 4, 2011
8126b81
Allow tasks to be included in the task list reply via ?include=
jamesu Aug 18, 2011
47d2aaf
Filter out objects from archived projects on global api routes
jamesu Aug 19, 2011
2ee6a49
#447452: add urgent flags to tasks and comments
tokland Aug 19, 2011
9030825
#447452: models: manager urgent flag (transitions, previous setting, …
tokland Aug 19, 2011
7028917
#447452: add urgent flag in task form
tokland Aug 19, 2011
51ab841
#447452: navitation: show urgent in today tasks
tokland Aug 19, 2011
2101ebd
web_steps.rb: [fix] make xpath selector relative to scope node
tokland Aug 19, 2011
08678bf
#447452: add basic urgent feature
tokland Aug 19, 2011
70b59ea
#447452: fix urgent task order + styles for calendar
tokland Aug 19, 2011
1033a20
#447452: styles for urgent flag in tasks and calendar_date_select
tokland Aug 19, 2011
0b2f8b4
#447452: Task: Add urgent flag in API response
tokland Aug 19, 2011
6d04558
#447452: move urgent edit to task_edit and add story to task_create
tokland Aug 19, 2011
f609b2f
#447452: use char ! as the urgent task badge
tokland Aug 19, 2011
25d80ca
#447452: refactor TasksHelper#comment_task_due_on
tokland Aug 21, 2011
3d3f09a
A bit of extra margin for the Urgent checkbox
Aug 22, 2011
50b3cb7
#447452: show urgent flag box for conversation to task conversion form
tokland Aug 22, 2011
0746151
#447452: convert_to_task: set urgent flag to false by default
tokland Aug 22, 2011
dcb9e48
Better upload insertion in the activity stream
jamesu Aug 22, 2011
61d9dab
Add a "More..." dropdown by files in comments
Aug 23, 2011
2daac7d
fix project digests when args are encoded in JSON
jrom Aug 24, 2011
39b4791
Added project route for tasks#create, adds tasks to the Inbox
jamesu Aug 24, 2011
e33d704
#458071: redraw calendar box to show it nearer to the link
tokland Aug 24, 2011
5c2206d
Change name limits for project and organization names
jamesu Aug 24, 2011
9481a2b
When deleting a project, associated watchable tag should be removed. …
unixcharles Aug 25, 2011
7786546
Fixes image url and link to project from it for some email notificati…
Jun 4, 2011
cc6c66e
Merge branch 'patches/notification-emails' of github.com:denisnovikov…
Aug 26, 2011
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
#447452: add urgent flags to tasks and comments
tokland committed Aug 22, 2011
commit 2ee6a49f7a2651b7b69b77ac4e68f2a594a95208
12 changes: 12 additions & 0 deletions db/migrate/20110818091722_add_urgent_flag_to_tasks_and_comments.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
class AddUrgentFlagToTasksAndComments < ActiveRecord::Migration
def self.up
add_column :tasks, :urgent, :boolean, :default => false, :null => false
add_column :comments, :urgent, :boolean, :default => false, :null => false
add_column :comments, :previous_urgent, :boolean, :default => false, :null => false
end

def self.down
remove_column :tasks, :urgent
remove_column :comments, :urgent, :previous_urgent
end
end
5 changes: 4 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20110812102452) do
ActiveRecord::Schema.define(:version => 20110818091722) do

create_table "activities", :force => true do |t|
t.integer "user_id"
@@ -104,6 +104,8 @@
t.integer "uploads_count", :default => 0
t.boolean "deleted", :default => false, :null => false
t.boolean "is_private", :default => false, :null => false
t.boolean "urgent", :default => false, :null => false
t.boolean "previous_urgent", :default => false, :null => false
end

add_index "comments", ["created_at"], :name => "index_comments_on_created_at"
@@ -466,6 +468,7 @@
t.boolean "deleted", :default => false, :null => false
t.boolean "is_private", :default => false, :null => false
t.string "google_calendar_url_token"
t.boolean "urgent", :default => false, :null => false
end

add_index "tasks", ["assigned_id"], :name => "index_tasks_on_assigned_id"