Feature #1233

change default homepage to My page

Added by Robert Cerny about 5 years ago. Updated about 1 month ago.

Status:NewStart date:2008-05-13
Priority:NormalDue date:
Assignee:-% Done:

0%

Category:UI
Target version:Candidate for next major release
Resolution:

Description

I would like to get a preference to set homepage to another page. My page is prefered, popup button with more options (MyPage, Wiki, Selected Project...) would be better

adds_default_page.patch Magnifier (9.29 KB) Makoto NAKAYA, 2012-05-09 07:03


Related issues

Related to Feature #664: User can choose what page he want's to be Start page New 2008-02-14
Related to Feature #429: Merge Home and My page New
Duplicated by Feature #5232: Show 'My page' after login Closed 2010-04-01

History

#1 Updated by Matt Meng about 4 years ago

+1

This is something I've been hoping to see for quite some time. It would be great if it were a per-user based choice, so that one user could select "My Page" as default while another decides upon "Wiki".

#2 Updated by David P about 4 years ago

+1

The ability to choose a project->roadmap or version as the default view would be nice.

#3 Updated by Noname Noname over 3 years ago

+1 here, if we could have it so we could set an overall home page for the site i.e. the issues page

#4 Updated by Robert Gruendler over 3 years ago

+1 optionally setting default homepage to "my page" would be great.

ie. we don't use "news" a lot in our projects, so the default homepage doesn't show any recent information at all, hence you click it away in 99% of the cases.

#5 Updated by Sebastian M. over 2 years ago

+1

#6 Updated by Sebastian M. over 2 years ago

Here's how to change it manually:

Edit config/routes.rb

Change

map.home '', :controller => 'welcome'

to
map.home '', :controller => 'my', :action => 'page'

#7 Updated by James Stewart over 2 years ago

Another way of doing this, is to create a new Redmine plugin, and modify <plugin>/config/routes.rb. I do this mainly to keep from having to modify Redmine core files, making upgrades and testing simpler.

map.home '', :controller => 'my'

I removed the page action because it causes rake test to fail, and looking at the My controller, page is defined in the index method.

RAILS_ENV=test rake test

#9 Updated by Etienne Massip about 2 years ago

  • Target version set to Candidate for next major release

#10 Updated by Thomas Evensen almost 2 years ago

+1

Would it be possible, while we wait, for someone to produce a plugin we could use. Perhaps also with an easy configuration option of choosing what page/project-page to choose?

#11 Updated by Hisham Al-Shurafa almost 2 years ago

+1 My page has better info than 'Home'. I already went ahead and changed it for my team by editing config/routes.rb

#12 Updated by André Bachmann almost 2 years ago

I'm wondering what exactly has to be in config/routes.rb so that the user is automatically redirected to the wiki page of a project? I want the exact behaviour of www.redmine.org, where the user is guided to the wiki of the project automatically.

Who can give a hint?

#13 Updated by side2k . over 1 year ago

André Bachmann wrote:

I'm wondering what exactly has to be in config/routes.rb so that the user is automatically redirected to the wiki page of a project? I want the exact behaviour of www.redmine.org, where the user is guided to the wiki of the project automatically.

Who can give a hint?

Here it is:

map.home '', :project_id => 'myproject', :action => 'show', :controller => 'wiki'

Of course, you should put your project name instead of myproject

#14 Updated by Uwe Koloska about 1 year ago

Maybe this plugin will do what you want: Landing Page

#15 Updated by Makoto NAKAYA about 1 year ago

Hello,
I made the patch from branch "master". This patch works on 1.4.1 stable.

It adds column "default_page" and "default_project_id" to table "users".
"default_page" means what should be loaded after logined.
"default_project_id" means user's default project. But it can be selected from projects that are joined by user.

There is no test code because I don't know how to write tests....

Regards

#16 Updated by Paul Mureev 11 months ago

+1

#17 Updated by Kevin Cloutier 9 months ago

What would be added to routes.rb to land the users on 'view all issues' and optionally with a selected saved query?

#18 Updated by Den Iskandarov 8 months ago

How to make default page as:

Home -> Projects -> View all issues ?

Redmine 2.1.0

#19 Updated by Sunny Jaiwal 8 months ago

I was able to successfully change the home page in Redmine 2.1.0 by changing the following statement in /config/routes.rb from

root :to => 'welcome#index', :as => 'home'

to

root :to => 'reports#issue_report', :id => 'myproject', :as => 'home'

where "myproject" is the project identifier.

#20 Updated by Filou Centrinov 3 months ago

Duplicate: #5232
Related to: #664, #6464

#21 Updated by Toshi MARUYAMA 3 months ago

Filou Centrinov wrote:

Duplicate: #5232
Related to: #664, #6464

Thank you for your pointing.

#22 Updated by Filou Centrinov 3 months ago

Related to #429

#23 Updated by Daniel Felix 3 months ago

Filou Centrinov wrote:

Related to #429

Thanks. Added relation.

#24 Updated by Dipan Mehta 2 months ago

You can do exactly the same thing using Redmine Start Page plugin

Install, and config [ contoller= my , action = page ]

Also available in: Atom PDF