Give us feedback
voteup
Reactive icon

VoteUp

Stable version 1.0.1 (Compatible with OutSystems 11)
Uploaded on 18 August 2021 by 
5.0
 (1 rating)
voteup

VoteUp

Documentation
1.0.1

Static Entities for configuration

RequestState (VU_Votes_CS)

Here you can add or remove the states for a single request. You can also specify what a user can do while a request is in that state.

  • Allow to Vote
  • Allow to Comment
  • Allow to Edit


RequestStateMachine (VU_Votes_CS)

Here you define the possible transitions from one state to another.

Server actions in VU_VotesServices_BL

  • Board_Initialize: Creates a new board. New boards are disabled by default.
  • Board_Activate: Activates a board
  • Board_Disable: Disable a board
  • Board_UpdateBoard: Updates title and description of a board
  • Board_RemoveBoard: Deletes a board with all requests.


  • Request_AddRequest: Adds a request to a board.
  • Request_UpdateRequests: Updates a request
  • Request_AddComment: Adds a comment to a request
  • Request_UpdateState: Moves a request to another state.
  • Request_Vote: Counts a vote for a request.
  • Request_RemoveRequest: Deletes a request


Retrieving data

  • Board_GetBoards: Gets all boards
  • Board_GetDetails: Gets details for a single board
  • Board_GetRequests: Gets all requests for a board


  • Request_GetDetails: Gets details for a request
  • Request_GetHistory: Gets the activity stream for a request
  • Request_GetVotes: Gets voters for a request
  • Request_GetAllState: Gets a possible state transitions for a request.