instruction
stringclasses
1 value
input
stringlengths
3
76.9k
output
stringlengths
3
9
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Copy the code from existing Evoq Social Subscriptions project into the main DotNetNuke Library project. Should go under Services folder. Check name spaces. Current namespace is namespace DotNetNuke.Subscriptions which should be DotNetNuke.Services.Subscriptions. Merge SQL into 7.1.& 7.2 sql file. "
8743.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"CTO office had earlier discussed creation of common control that other module developers can use to integrate with querying aspect of Search. We need to work with PM to get more requirements around this - will this be created as jQuery plugin or ascx control?"
1056633.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Synonyms allows user to search for 'laptop' and find 'notebook'. We have ways for Admin to create custom synonyms, e.g. 'DNN' and 'DotNetNuke'. There are open source dictionary available, e.g. http://wordnet.princeton.edu/ that can be bundled with the product. When we implement this we need to make sure we can include other languages also. We need to do mini-spike to do more research."
1045485.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"We do not have ""Did you mean this"" feature in Search. We need a mini-spike on this."
1045496.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Currently the Site Crawler in the Platform does not crawl Journal items. Journal integration with Search is a bit tricky as Journal has a different permission system as compared with module / tab permissions. There are two ways this integration can be done: *Treat Journal as Module and implement ModuleSearchBase* 1) The advantage of this approach is that all you need to implement is ModuleSearchBase and the content will start to get indexed by Site Crawler. 2) However, there is a downside that Journal has a different permission system then typical module / tab permission. During indexing, one would need to translate Journal’s permission into module type permission so Search can do security trimming. *New Crawler - Create a new SearchType for Journal* 1) This approach allows checking of Journal permission at querying time. 2) This SearchType should implement BaseResultController, especially the HasViewPermission method. GetDocUrl method in this method is marked as abstract, but isn't called if Url is already stored in the SearchDocument. 3) There is no need to create a separate scheduled tasked. All we need to do is modify Site Crawler to call into Journal to obtain SearchDocuments. Site Crawler currently crawls through tab and module metadata and collects SearchDocuments from modules that implement ISearchable or ModuleSearchBase. 4) When user performs a query and hits are found in Journal, system will call HasViewPermission method every hit in Lucene. This will require a DB hit to check permission, which is a down-side. 5) Make sure the SearchType is not marked as Private. In reality 90% of Journal entries are Public (except for ones in a Social Group), a mixed approach can be done, where permission is stored in the Index for all the public items so there isn’t a hit. *Due to the above I call this as a mini-spike* "
216606.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Currently Sort Direction is just one direction, we need to ensure that both ascending and descending sort direction is available"
17310.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Create / Modify Unit Tests for this new feature of custom sorting"
17312.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"When doing a big operation like adding a new Portal or adding a new Page there is often a lot of cache thrashing because there is no option in many of API methods to control whether the cache is cleared. For example we don't need to clear page caches when creating a new portal until the portal creation is complete."
77999.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"All Projects are set to store their Web settings in the project. This forces the same configuration on all developers. This setting could be left to each developer to choose how to handle (it would potentially reduce the number of Cassini Web Server instances that get launched when debugging."
22916.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"The Control Panle is being injected into the control tree on ALL requests, and then made visible based on some conditions. This is unneccessary and impacts performance for anonymous users. While some of the conditions require the control to be injected, we can reduce the number of times the ControlPanel is injected by moving the check outside of the control itself."
17657.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"We need to reorganize the trunk in preparation for moving to Git/GitHub"
7434.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Shaun has created the Module Creator module and it needs to be integrated into DNN Platform. The module is well written and already installs and does the db updates required. This means its a simple task to just add the module into the build process and include it in the distro."
32076.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Currently the module has readme.txt files associated with each template that are supposed to have cut and paste code snippets in them. These files need to have some relevant code snippets for common DNN code tasks. A central repo of code snippets on the DNN site would be really useful. If it worked like the Community Voice module then if would be easy to find quality snippets and provides another way for community to contribute and earn reputation."
44138.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"On the Edit Control tab of the module there will be access to the existing Extension Package Wizard so that the developer can easily package their module directly from the module. Currently when Update is pressed the user gets redirected to the Extensions page, this needs to go back to the page with the module that is being developed on it. !mcpackage.png!"
32085.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"On the Edit Control tab of the module there will be access to the existing Extension Editor so that the developer can easily configure their module directly from the module. Currently when Update is pressed the user gets redirected to the Extensions page, this needs to go back to the page with the module that is being developed on it. !mcconfigure.png!"
32081.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"The Edit Control tab allows the developer to view and edit the source code for any file associated to the module. By default the Select File: option selects the file identified as the “view” control. Selecting a file from the list will display the full path of the file as well as the contents of the file. The contents are displayed using an open source editor control – CodeMirror – which provides code highlighting and line numbers. Modifications can be made to the code and it can be saved in real-time for immediate results in the application. !mcsourceeditor.png! Or you could use a more robust development environment such as Web Matrix or Visual Studio where the code assets created on the file system will be immediately accessible: !vseditor.png! "
32073.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"When a developer wishes to add another file to the module they are creating the developer will click the ""Develop"" option in the module menu. This shows two tabs where the first tab has the source code editor and the second tab allows the developer to add new files. Choosing a template will update the text below the buttons with the content of the readme.txt file in the template's folder. The goal of Add Control is to allow a developer to add individual web assets to their Module folder ( ie. user controls, class files, style sheets, javascript, etc… ): Language: C# or VB. The default will be the language that the module was originally created in. Changing the selection reloads the list of Templates. Template: A list of templates loaded dynamically based on the Language selected. It will display both files of type “Module” as well as other file types, including the ability to create Class Files. When a user selects a template, it will load and display an associated “readme.txt” file ( if one exists ). Control Name: Modules can contain multiple controls. This allows the user to specify the name of the file created. The default will be “Edit” Control Type: Modules have different security modes which are supported by the platform and integrated with the user permissions. The default will be “Edit” !addcontroltomodule.png! The templates are stored in the /DesktopModules/ModuleCreator/Templates folder based on Language. Additional child folders can be created within the Language folders and will be recognized within the Module Creator in the Template list. Files that are named “template"".* will be renamed to the Control Name when the module is created. These templates can contain tokens such as [OWNER], [MODULE], [CONTROL], [YEAR] which will be substituted at run-time with the parameter values supplied. Template files must contain at least enough content to make the asset usable within the environment, but there is no limit to the amount of content they can contain. In the Module templates provided, they contain the UI script for the standard Form Pattern in DotNetNuke including structure and default CSS classes. !mctemplates.png! Selecting Create will copy the files from the template folder, replace any tokens, and register the new module control in the database. Dynamic Class Files can also be created which are copied to the App_Code folder and can be edited through the Edit Control tab. These types of files include a simple class file, DAL2+ data access files, Web Service API files, which creates both the API controller and the Route Mapper, and a scheduled job. These files all have boiler plate code added to make development easier. !samplecode.png! "
32148.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Developers who want to build extensions for the DotNetNuke platform must first be familiar with the basic CMS user experience for creating pages, module instances, and content. With this in mind, creating a new custom module should be no more difficult than it is to add an existing module to a page. Leveraging the standard user experience, we will create a new “Development” module category in the Add Module menu in the Control Panel. A new “Module Creator” module will be available in this category. This module is only relevant to Host users. The should make the option very discoverable and accessible for developers ( ie. they do not have to navigate the various administrative menus ). !AddNewDevelopmentModule.PNG! This Module Creator module can be added to any page just like a normal DotNetNuke module. It exposes a number of basic options which a developer will need to provide in order to create a custom module: Owner Name: DotNetNuke requires a unique top level namespace to ensure uniqueness. The owner name could be an organization name, brand name, developer’s name, etc... The system will save the value provided as a Host Setting so that it can be used as a default for any modules created in the future. Module Name: A short name to identify the purpose of the module Description: Optional. A description of the module Language: C# or VB. The default is C#. Changing the selection reloads the list of Templates. Template: A list of templates loaded dynamically based on the Language selected. It will only display templates of type “Module”. There are 3 different dynamic module models which can be utilized based on preference – Inline Script, User Control, and Razor. The default will be “Module – User Control”. When a user selects a template, it will load and display an associated “readme.txt” file ( if one exists ). The readme.txt file can contain a description of the template files, but it can also include code samples which could be cut and pasted into the module control to add additional functionality. Control Name: Modules can contain multiple controls. This option allows the user to specify the name of the file created. The default will be “View” !ModuleCreatorForm.PNG! When the developer presses the Create Module button it will register the module in the database, create a module category for the Owner and associate it to the module, and update the ModuleDefID of the module instance with the ModuleDefID of the newly registered module. The end result is that the Module Creator module will be “replaced” on the page with the new module created. At this point the module is fully usable within the environment and the developer can browse to the page where it is located using the standard website navigation."
34068.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"SPIKE - need to ensure that country names that are returned by GeoIP are not different (so that UserModuleBase -LookUpCountry can localize)"
91879.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Update UI to match the mock up.(need provided by Ryan); Update the logic of saved queries function: - when select item from saved queries drop down: 1. if the connection name doesn't exist in connection drop down, need prompt a message to let user know and select default connection, else select the connection in drop down; 2. fit the script textbox with the query script content; 3. fit the query name textbox with query name; - when click ""execute"" button: 1. if the statement return data table(s), we need display all table(s); 2. if the statement return nothing and just an execute script, we need return whether script execute complete, and show exact error message if it failed; 3. if the statement contains ""GO"" statement, it should split as a multi-command script; - when click ""save query"" button: 1. we need check whether the name exists, if true we need prompt user whether overwrite the exist one or let user to change the name; 2. after save query, need prompt message to let user know its done; - when click ""delete query"" button: 1. need prompt confirm window to user first; 2. after delete, we need set saved queries drop down to ""none specific"", connect string to default, empty script text area and name textbox;"
95940.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Business Object of saved query, mapping the columns from table. Business Controller for saved queries, it should implement function: SaveQuery - validate required properties - save the object into database - add event log for the script update GetQueries - get the list of all saved queries. GetQuery(int id) - get the query by id. Delete(int id) - delete the query by id - add event log for the script delete Test cases for Business Controller."
98998.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Table: SavedQueries -QueryId INT, Identity, Primary Key -Name nvarchar(50), not null, unique index --The query name -Content nvarchar(max) not null -- the query script -Connection nvarchar(50) not null -- the connection name which used to execute the script -CreatedByUserID INT, null -CreatedOnDate DateTime, null -LastModifiedByUserID INT, null -LastModifiedOnDate DateTime, null -- these 4 columns used for content item Procedures: GetQueries --get all queries list SaveQuery -- add a new query or update exist one. DeleteQuery --delete a query"
99045.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"need to update the following: UserModuleBase -LookUpCountry \Community\Library\UI\UserControls\Address.cs various methods \Community\Controls\CountryListBox\CountryListBox.cs \Content\Community\Controls\CountryListBox\CountryLookup.cs "
93531.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Need to ensure that UserHostAddress works as expected in different .net versions i.e. both return nothing and not an exception ASP.NET 2.0 HttpContext.Current.Request.UserHostAddress = ""127.0.0.1"" ASP.NET 3.5 HttpContext.Current.Request.UserHostAddress = ""::1"""
93602.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"we're a little limited in test-cases due to the code coming from maxmind, but we should create the following: * test for invalid IP addres * test for IP that returns no data (e.g. 127.0.0.1) * test for valid IP that returns data"
93604.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"add panel to host ->advanced settings create user control (~/DesktopModules/Admin/HostSettings/GeoIP.ascx) add simple file upload control to replace the data add textbox to allow entry of an IP and return the data associated with that add label to display the location, name and date of the GeoIP data file (reading from geoipversion.resources file)"
93607.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Add the GeoLiteCity.dat database into App_Data & Include the license file in /Licenses and in Licenses.txt file create geoipversion.resources file to contain the version/date of the geoip file"
93609.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"could be distributed as a DotNetNuke.Services.GeoIP.dll or compiled into the core DLL "
93609.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Per CTO we should remove 1 and 2 character default stop words from search admin as there is already a host setting to skip words that are 1 or 2 characters long. Below is the current list: a, an, and, are, as, at, be, but, by, for, if, in, into, is, it, no, not, of, on, or, such, that, the, their, then, there, these, they, this, to, was, will, with This should be the modified list: and, are, but, for, into, not, such, that, the, their, then, there, these, they, this, was, will, with "
9.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"The PRD needs to be evaluated and broken down into stories."
2558.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"The PRD needs to be evaluated and broken down into stories."
12996.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"The PRD needs to be evaluated and broken down into stories."
4811.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"We need to create a plan of action for implementing UI/UX items"
42036.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"In order to ensure that this feature meets the Community's needs we need to create a draft PRD and initiate a Community Review."
60520.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"As a host user I would like the ability to temporarily promote and demote site users (admins) to be a Super user."
27269.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"In order to implement this is issue we would like to ensure that it meets the communty's needs. We need to create an initial PRD draft and let the community review."
42027.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"In order to determine if there are any performance bottlenecks we need to carry some ANTS Performance Profiling of some core functions."
42073.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"In order to reduce the number of calls to SQL Server we need to carry out SQL Profiling of some core functions."
42076.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"In order to repackage DNN we need to work with the other teams to develop a plan."
6233.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"As a user I would like my application to perform faster. Selecting the Optimize Compilation flag should improve performance in the releases versions of the product. We need to make this change early in the release cycle so we can determine if there are any issues."
40538.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"The Search introduced in 7.1.0 allows sorting by Relevance and by LastModified. These two options are defined in enum SortFields which is passed as a property in SearchQuery object to the Searching API. We need to enhance to provide more Sorting on other fields such as tag, title, culture, etc in addition to custom field names. Below are specific requirements and tasks: 1) Extend SortOptions enum to have more hard-coded fields. 2) Also have the ability to provide ""Keywords"" or ""NumericKeys"" options. These two are special properties of SearchDocument where custom fields can be stored in the Index. Add these two as new properties in SearchQuery, e.g. SortKeywordFieldName or SortNumericKeyFieldName. These fields need to be supplied by caller when sort option is either of the above two. 3) Have the ability to provide sort direction, ascending and descending. We have descending option only 4) We should explore if we can provide more than one field in sorting (this is nice to have) 5) Search has great number of unit tests, we must write unit tests to provide code coverage. Note: Sorting is done in the custom collector code introduced in 7.1.1 "
41039.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"The Search introduced in 7.1.0 allows sorting by Relevance and by LastModified. These two options are defined in enum SortFields which is passed as a property in SearchQuery object to the Searching API. We need to enhance to provide more Sorting on other fields such as tag, title, culture, etc in addition to custom field names. Below are specific requirements and tasks: 1) Extend SortOptions enum to have more hard-coded fields. 2) Also have the ability to provide ""Keywords"" or ""NumericKeys"" options. These two are special properties of SearchDocument where custom fields can be stored in the Index. Add these two as new properties in SearchQuery, e.g. SortKeywordFieldName or SortNumericKeyFieldName. These fields need to be supplied by caller when sort option is either of the above two. 3) Have the ability to provide sort direction, ascending and descending. We have descending option only 4) We should explore if we can provide more than one field in sorting (this is nice to have) 5) Search has great number of unit tests, we must write unit tests to provide code coverage. Note: Sorting is done in the custom collector code introduced in 7.1.1 "
1070710.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"1) When user types-in keywords on the skin object, often times it takes a little while for results to show up. The result finally shows up in little pop-up below the search box. We should open the pop-up first and show a spinner so user knows something is happening. We should discuss with others if this is needed. 2) Pls see the attached screenshot. Google shows the first result in the text box itself. This gives the sense that machine is typing results for you. "
1227507.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"In order to provide better consistency of the Index in a web farm scenario we need to break Indexing job in two phases: 1) We should not durectly update Index when someone adds content to Index by calling the API SearchController.Instance.Add. 2) Instead we should store the serialized object SearchDocument in a table in database 3) We should write a scheduled task (to be run every 1 minute) to flush the data from the database into Lucene Index. 4) This will ensure that only one thread / agent is performing Write operation on the index and likelihood of Index corruption will be minimal. 5) This job will be similar to Purge Module Cache Buffer we have in system - A very well known pattern in DNN."
1227489.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"It appears that older APIs like SearchDataStoreController.GetSearchResults and few others in same class are not brought forward to use new Search API. We need to work with PM to first find out if this is needed or not. Ash is writing this story so we don't forget."
124801.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"We'd like to write a Crawler that can Index User Profile so search can be done very quickly using Lucene, especially for Profile Properties which are hard to search for (from performance point of view) 1) Crawler should respect public / private / admin only security settings on profile property 2) Crawler should be able to re-index when any of the property is changed 3) Crawler should be able to delete from the index when user is deleted (both soft or hard)   Note - This was not part of initial requirement, however PM has shown interest in this area. I am marking it as low-priority for now."
219351.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Items added in Schedule History must be localized. Trace in Log4Net is OK to be English only."
46406.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"There needs to be a way to easily supply pre-configured list of synonym and stop words so they can be available out of the box in install. It's been suggested to use resource files as it can be edited outside of code and can also be language specific."
69770.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"All the three crawlers use Scheduler to figure out the start time for doing Deltas. I believe this can create problems when someone deletes scheduler history. I've seen support deleting number of times to trigger start of a scheduled job right away. The crawlers should keep their run dates in separate schedule setting - not in schedule history."
62348.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Card: As DNN, I want the DAM to implement the new search so that the users can take advantage of the new features, like: search inside documents Conversation:   Confirmation: CE must remain the same way it is, it must only search for file names and extensions. Paid users must get the advanced version of search Search must only return results that involve documents since this will be part as the DAM The results must be presented as a list (see screenshot). We want to keep the current UI The results must be presented in the same grid as they currently show since we do not want to lose the data shown and order by features The results must support paging as shown in the screenshot and as it can currently be seen in the product The DAM search must implement the new search input with search suggestions (see attachment)"
79322.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"None of the exceptions thrown by new Search APIs exceptions are localized. They must be localized and perhaps checked through unit tests."
46409.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Items added in Schedule History must be localized. Trace in Log4Net is OK to be English only."
46406.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"The Preview and Detailed Search methods in DotnetNuke.web has good business logic to group results. They should be protected using unit tests"
46400.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Note from CTO: In the core there is a notion of a LastContentModifiedDate for a module. This property is supposed to let the core know of the last date/time that a module modified its content. It has value in a variety of scenarios – including search indexing. The way it is called today I believe is when a module calls SynchronizeContent – which tells the core to expire its module output cache, etc… In the case of search, when the indexer spins through the modules, it should be able to look at this property to determine if it needs to index the content. This would save the additional processing of using reflection to dynamically call the modules GetSearchItems method – only to get back an empty result set if the content has not changed ( which can be a big performance issue, as everytime the GetSearchItems is called the module is internally hitting the database to retrieve the relevant content ). So I would like to find out if we are using this technique. And I realize that not all modules implement LastContentModifiedDate – those that do not would have a value of NULL in this property – which means that in these cases the search indexer would HAVE to call GetSearchItems – but for those that actually do implement it ( ie. Html/Text ) it would produce very good performance benefits."
54602.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Items added in Schedule History must be localized. Trace in Log4Net is OK to be English only."
1125074.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Do not show Flag for Ignore Words when site has only one Language installed"
68576.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"We have a concept of SearchType, which maps to a crawler. CE has SearchType 1 for module, PE has 2 and 3 respectively for File and DocumentCrawler. This information is stored in SearchTypes table in database. This information is used by Search Results Settings to build the drop-down for types eligible for public search. By default all searchtypes are listed. There are few exceptions though - Url Crawler and Module Crawler show as Pages (we may need to clean that up though later). However, with this story we want to introduce a concept of Private SearchType. Setting this to true (in database) will make the type to not automatically show up in the above ui (see screenshot). This will help in use cases where we want to search EventViewer or SocialMessages, where these items should not be available by default for public site search. They must be available within the modules only, e.g. Messaging module or Event Viewer module. The only way to test this is to change the setting of File Crawler in database (SearchTypes table), clear cache and make sure it is not automatically selected in search results settings.  "
84766.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Currently Synonym can be defined per Site. We need the option to have it per Language as well, similar to Ignore Words. "
70154.0
give resolution time in minutes for the given user story, only provide the number of minutes in the output without any other text
"Per Social PM, the Toast API needs to be moved into platform. Currently, Social team has added a new column names SendToast to core table in Social 1.0. Ideally this should have been done at the beginning, but at that time we were past the deadline for core cut-off. This must be done in the next maint release."
101634.0