Skip to content
This repository was archived by the owner on Aug 10, 2022. It is now read-only.

Commit d5bacae

Browse files
Make Functions classes public
1 parent db418d6 commit d5bacae

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

GitHubReadmeWebTrends.Functions/Functions/GetAdvocatesForPowerBIDashboard.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace GitHubReadmeWebTrends.Functions
1212
{
13-
class GetAdvocatesForPowerBIDashboard
13+
public class GetAdvocatesForPowerBIDashboard
1414
{
1515
readonly YamlService _yamlService;
1616
readonly CloudAdvocateService _cloudAdvocateService;

GitHubReadmeWebTrends.Functions/Functions/GetAdvocatesFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace GitHubReadmeWebTrends.Functions
1111
{
12-
class GetAdvocatesFunction
12+
public class GetAdvocatesFunction
1313
{
1414
const string _runOncePerMonth = "0 0 0 5 * *";
1515

GitHubReadmeWebTrends.Functions/Functions/GetGitHubReposFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace GitHubReadmeWebTrends.Functions
77
{
8-
class GetGitHubReposFunction
8+
public class GetGitHubReposFunction
99
{
1010
readonly GitHubGraphQLApiService _gitHubGraphQLApiService;
1111

GitHubReadmeWebTrends.Functions/Functions/GetReadmeFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace GitHubReadmeWebTrends.Functions
1111
{
12-
class GetReadmeFunction
12+
public class GetReadmeFunction
1313
{
1414
const string _runEveryHour = "0 0 * * * *";
1515

GitHubReadmeWebTrends.Functions/Functions/OpenPullRequestFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace GitHubReadmeWebTrends.Functions
1010
{
11-
class OpenPullRequestFunction
11+
public class OpenPullRequestFunction
1212
{
1313
readonly static string _backupEmailAddress = Environment.GetEnvironmentVariable("BackupEmailAddress") ?? string.Empty;
1414

GitHubReadmeWebTrends.Functions/Functions/VerifyWebTrendsFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace GitHubReadmeWebTrends.Functions
1212
{
1313
//Inspired by https://github.com/spboyer/ca-readme-tracking-links-action/
14-
static class VerifyWebTrendsFunction
14+
public static class VerifyWebTrendsFunction
1515
{
1616
const string _webTrendsQueryKey = "WT.mc_id";
1717

GitHubReadmeWebTrends.Functions/Models/CloudAdvocatePowerBIModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace GitHubReadmeWebTrends.Functions
44
{
5-
class CloudAdvocatePowerBIModel
5+
public class CloudAdvocatePowerBIModel
66
{
77
public CloudAdvocatePowerBIModel(string name, string alias, Uri gitHub, Uri twitter, Uri linkedIn)
88
{

0 commit comments

Comments
 (0)