|
33 | 33 | import hudson.model.userproperty.UserPropertyCategory;
|
34 | 34 | import hudson.security.ACL;
|
35 | 35 | import hudson.util.FormValidation;
|
| 36 | +import hudson.util.ListBoxModel; |
36 | 37 | import hudson.views.MyViewsTabBar;
|
37 | 38 | import hudson.views.ViewsTabBar;
|
38 | 39 | import jakarta.servlet.ServletException;
|
|
48 | 49 | import org.jenkinsci.Symbol;
|
49 | 50 | import org.kohsuke.accmod.Restricted;
|
50 | 51 | import org.kohsuke.accmod.restrictions.NoExternalUse;
|
| 52 | +import org.kohsuke.stapler.AncestorInPath; |
51 | 53 | import org.kohsuke.stapler.DataBoundConstructor;
|
52 | 54 | import org.kohsuke.stapler.HttpRedirect;
|
53 | 55 | import org.kohsuke.stapler.HttpResponse;
|
@@ -273,6 +275,24 @@ public UserProperty newInstance(User user) {
|
273 | 275 | public @NonNull UserPropertyCategory getUserPropertyCategory() {
|
274 | 276 | return UserPropertyCategory.get(UserPropertyCategory.Preferences.class);
|
275 | 277 | }
|
| 278 | + |
| 279 | + @POST |
| 280 | + public ListBoxModel doFillPrimaryViewNameItems(@AncestorInPath User user) throws IOException { |
| 281 | + ListBoxModel items = new ListBoxModel(); |
| 282 | + user = user == null ? User.current() : user; |
| 283 | + if (user != null) { |
| 284 | + MyViewsProperty property = user.getProperty(MyViewsProperty.class); |
| 285 | + if (property == null) { |
| 286 | + property = new MyViewsProperty(); |
| 287 | + user.addProperty(property); |
| 288 | + } |
| 289 | + for (View view : property.views) { |
| 290 | + items.add(new ListBoxModel.Option(view.getDisplayName(), view.getViewName(), |
| 291 | + view == property.getPrimaryView())); |
| 292 | + } |
| 293 | + } |
| 294 | + return items; |
| 295 | + } |
276 | 296 | }
|
277 | 297 |
|
278 | 298 | @Override
|
|
0 commit comments