Skip to content

Commit a16897e

Browse files
Merge pull request #6 from BharatRamsf3693/master
891562: Need to move the latest changes to public repo
2 parents 7c12e66 + cf25cfd commit a16897e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+457
-492
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
**/.vs/
2+
.git/
3+
**/bin/
4+
**/obj
5+
node_modules/
6+
package-lock.json

Controllers/HomeController.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryEstimator.Showcase.Controllers
1+
namespace PlanningPoker.Showcase.Controllers
22
{
33
using System;
44
using System.Collections.Generic;
@@ -8,10 +8,10 @@
88
using Microsoft.AspNetCore.Mvc;
99
using Microsoft.Extensions.FileProviders;
1010
using Newtonsoft.Json;
11-
using StoryEstimator.Showcase.Models;
12-
using StoryEstimator.Showcase.Models.Data;
13-
using StoryEstimator.Showcase.Models.SignalR;
14-
using StoryEstimator.Showcase.Utils;
11+
using PlanningPoker.Showcase.Models;
12+
using PlanningPoker.Showcase.Models.Data;
13+
using PlanningPoker.Showcase.Models.SignalR;
14+
using PlanningPoker.Showcase.Utils;
1515

1616
/// <summary>
1717
/// Home controller

Models/Data/CardList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryEstimator.Showcase.Models.Data
1+
namespace PlanningPoker.Showcase.Models.Data
22
{
33
using System.Collections.Generic;
44

Models/Data/Enum.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryEstimator.Showcase.Models.Data
1+
namespace PlanningPoker.Showcase.Models.Data
22
{
33
public enum RoomStatusEnum
44
{

Models/Data/RoomList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryEstimator.Showcase.Models.Data
1+
namespace PlanningPoker.Showcase.Models.Data
22
{
33
using System;
44
using System.Collections.Generic;

Models/Data/RoomPlayerList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryEstimator.Showcase.Models.Data
1+
namespace PlanningPoker.Showcase.Models.Data
22
{
33
using System;
44
using System.Collections.Generic;

Models/Data/StoryList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryEstimator.Showcase.Models.Data
1+
namespace PlanningPoker.Showcase.Models.Data
22
{
33
using System;
44
using System.Collections.Generic;

Models/Data/StoryPlayerList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryEstimator.Showcase.Models.Data
1+
namespace PlanningPoker.Showcase.Models.Data
22
{
33
using System;
44
using System.Collections.Generic;

Models/Data/UserList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryEstimator.Showcase.Models.Data
1+
namespace PlanningPoker.Showcase.Models.Data
22
{
33
using System.Collections.Generic;
44

Models/PlayObjects.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
namespace StoryEstimator.Showcase.Models
1+
namespace PlanningPoker.Showcase.Models
22
{
33
using System;
44
using System.Collections.Generic;
5-
using StoryEstimator.Showcase.Models.Data;
6-
using StoryEstimator.Showcase.Utils;
5+
using PlanningPoker.Showcase.Models.Data;
6+
using PlanningPoker.Showcase.Utils;
77

88
/// <summary>
99
/// Play objects

0 commit comments

Comments
 (0)