CSC/ECE 517 Fall 2015/oss E1565 AAJ: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 25: Line 25:
* Associate the users with the institution table
* Associate the users with the institution table
* Add a drop down to the view of creating users so that new account creator can select the institute and save it.  
* Add a drop down to the view of creating users so that new account creator can select the institute and save it.  


==Changes Made==
==Changes Made==
===Part A===
===Admin Controller===
====admin_controller.rb====
=== Modified the methods <code>add_administrator</code> and <code>create_administrator</code> ===
=== Modified the methods <code>add_administrator</code> and <code>create_administrator</code> ===
{| class="wikitable"
{| class="wikitable"

Revision as of 00:21, 1 November 2015

E1565: Refactoring Admin Controller and Course Controller

This page provides a description of the Expertiza based OSS project aimed at refactoring Admin Controller and Course Controller.

In order to run our code visit the link 152.46.16.123:3000 and use the following credentials - username: admin, password: admin.

Introduction to Expertiza

Expertiza is a web application where students can submit and peer-review learning objects (articles, code, web sites, etc). It is used in select courses at NC State and by professors at several other colleges and universities.


Problem Statement

Files involved

admin_controller.rb
views in app/views/admin folder
user_controller

What they do:

The admin controller defines the changes that can be done on other types of users by super-admin and provides the view accordingly.

What needs to be done:

  • The text field for adding a new admin/instructor has to be removed, leaving only the button.
  • When the button is clicked, it should be redirected to new user creation view making the role (super-admin, admin or instructor) selected as default.
  • Make sure that user creation works for super-admin/admin/instructor.
  • Associate the users with the institution table
  • Add a drop down to the view of creating users so that new account creator can select the institute and save it.

Changes Made

Admin Controller

Modified the methods add_administrator and create_administrator

Before Refactoring After Refactoring
  def add_administrator
    @user = User.new
  end
  def create_administrator
    save_administrator
  end
  def add_administrator
    @user = User.new
    redirect_to 'users#new'
  end
  def create_administrator
    save_administrator
    redirect_to "users#new"
  end